1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-05 03:15:22 +02:00
tldr/pages/common/go-doc.md
2025-06-28 15:06:36 -07:00

24 lines
491 B
Markdown

# go doc
> View documentation for a package or symbol.
> More information: <https://pkg.go.dev/cmd/go#hdr-Show_documentation_for_package_or_symbol>.
- View documentation for the current package:
`go doc`
- Show package documentation and exported symbols:
`go doc {{encoding/json}}`
- Show also documentation of symbols:
`go doc -all {{encoding/json}}`
- Show also sources:
`go doc -all -src {{encoding/json}}`
- Show a specific symbol:
`go doc -all -src {{encoding/json.Number}}`