go,go-*,gofmt,goimports,golangci-lint: add Korean translation (#14190)

This commit is contained in:
코드싸이
2024-10-14 16:51:00 +09:00
committed by GitHub
parent 90ac2d50cd
commit 75d7e53411
21 changed files with 407 additions and 0 deletions

24
pages.ko/common/go-doc.md Normal file
View File

@@ -0,0 +1,24 @@
# go doc
> 패키지나 심볼에 대한 문서 보기.
> 더 많은 정보: <https://golang.org/cmd/go/#hdr-Show_documentation_for_package_or_symbol>.
- 현재 패키지에 대한 문서 보기:
`go doc`
- 패키지 문서 및 내보내진 기호 보기:
`go doc {{encoding/json}}`
- 기호의 문서도 함께 보기:
`go doc -all {{encoding/json}}`
- 소스도 함께 보기:
`go doc -all -src {{encoding/json}}`
- 특정 기호 보기:
`go doc -all -src {{encoding/json.Number}}`