We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unordered examples (9323de3) are documented in go doc cmd/go:
go doc cmd/go
If the last comment begins with "Unordered output:" then the output is compared to the comment, however the order of the lines is ignored
but not in go doc testing (which is the actual place where people will look for Examples documentation).
go doc testing
Example
$ go doc testing | grep -c Unordered 0
and for the same reason there's nothing on https://golang.org/pkg/testing/#hdr-Examples.
The text was updated successfully, but these errors were encountered:
CL https://golang.org/cl/37440 mentions this issue.
Sorry, something went wrong.
44bd39c
No branches or pull requests
Unordered examples (9323de3) are documented in
go doc cmd/go
:but not in
go doc testing
(which is the actual place where people will look forExample
s documentation).and for the same reason there's nothing on https://golang.org/pkg/testing/#hdr-Examples.
The text was updated successfully, but these errors were encountered: