If I start
godoc -http=:6060
and then open http://localhost:6060/pkg/builtin/#string
(e.g. via a function declaration that uses string
as a type somewhere), I get a big red "open /usr/local/Cellar/go/1.3.3/libexec/src/builtin: no such file or directory".
How do I get godoc to work the same way as http://golang.org/pkg/builtin/#string ?
I tried go get builtin
, but that did not change anything. And DuckDuckGo and Google searches did not illuminate me either.
(I've installed Go using Homebrew on OS X.)