Open jeremybettis opened 1 year ago
The link for the public symbol, correctly links to the public documentaion at https://chromium.googlesource.com/chromiumos/platform/tast/+/15a9a0c3c67a/src/go.chromium.org/tast/core/testing/test.go#21:
The links for the internal package testing
and symbol Test
result in errors:
https://pkg.go.dev/go.chromium.org/tast/core/internal/testing#Test:
The link should have gone to the documentation at https://pkg.go.dev/chromium.googlesource.com/chromiumos/platform/tast.git@v0.0.0-20230519210337-15a9a0c3c67a/src/go.chromium.org/tast/core/internal/testing#Test
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
yes
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
Read the documentation at https://pkg.go.dev/chromium.googlesource.com/chromiumos/platform/tast.git/src/go.chromium.org/tast/core/testing#Test
That package exports a type named Test, which is an alias of a Test struct that is in an internal package.
What did you expect to see?
I expected to see the documentation for testing.Test
What did you see instead?
A broken link to the internal type. There is no way to see the docs for the funcs or Public members of the Test struct.
Source code for public package: https://chromium.googlesource.com/chromiumos/platform/tast/+/15a9a0c3c67a/src/go.chromium.org/tast/core/testing/test.go#21 Source code for internal package: https://chromium.googlesource.com/chromiumos/platform/tast/+/15a9a0c3c67a/src/go.chromium.org/tast/core/internal/testing/test.go#41 Generated doc: https://pkg.go.dev/chromium.googlesource.com/chromiumos/platform/tast.git/src/go.chromium.org/tast/core/testing#Test