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
The documentation for the encoding/base64 package is difficult to follow because some bits are not documented or in a wrong order:
encodeStd
encodeURL
StdEncoding
URLEncoding
RawStdEncoding
RawURLEncoding
NewEncoder
NewDecoder
Encoding
The text was updated successfully, but these errors were encountered:
These are all a result of how godoc works in general. See the godoc blog post for details.
Probably a package-level example would help.
Sorry, something went wrong.
CL https://golang.org/cl/17231 mentions this issue.
e4e4942
No branches or pull requests
The documentation for the encoding/base64 package is difficult to follow because some bits are not documented or in a wrong order:
encodeStd
andencodeURL
are not documented. But they are referenced in the documentation for variablesStdEncoding
andURLEncoding
...RawStdEncoding
andRawURLEncoding
variables are documented beforeStdEncoding
andURLEncoding
while the former are defined using the later.NewEncoder
andNewDecoder
are documented before theEncoding
type and its methods.The text was updated successfully, but these errors were encountered: