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
https://pkg.go.dev/fmt@go1.23.3
Chrome/130.0.0.0
If you see the screenshot, you will find these two line.
%x hexadecimal notation (with decimal power of two exponent), e.g. -0x1.23abcp+20 %X upper-case hexadecimal notation, e.g. -0X1.23ABCP+20
if you see e.g -0x1.23abcp+20 , you will find out this is not a proper hexadecimal notation. it should be, d in place of p same for uppercase
%x hexadecimal notation (with decimal power of two exponent), e.g. -0x1.23abcd+20 %X upper-case hexadecimal notation, e.g. -0X1.23ABCD+20
there is p in hexadecimal notation, which is wrong notation.
It should be d insted of p, or any other valid hexa character
The text was updated successfully, but these errors were encountered:
Related Issues
(Emoji vote if this was helpful or unhelpful; more detailed feedback welcome in this discussion.)
Sorry, something went wrong.
I can raise small PR to correct that.
Pull request already made. #70388
The text is correct.
See https://go.dev/play/p/ykxYS9yRyJI
No branches or pull requests
What is the URL of the page with the issue?
https://pkg.go.dev/fmt@go1.23.3
What is your user agent?
Chrome/130.0.0.0
Screenshot
What did you do?
If you see the screenshot, you will find these two line.
%x hexadecimal notation (with decimal power of two exponent), e.g. -0x1.23abcp+20
%X upper-case hexadecimal notation, e.g. -0X1.23ABCP+20
if you see e.g -0x1.23abcp+20 , you will find out this is not a proper hexadecimal notation. it should be, d in place of p same for uppercase
%x hexadecimal notation (with decimal power of two exponent), e.g. -0x1.23abcd+20
%X upper-case hexadecimal notation, e.g. -0X1.23ABCD+20
What did you see happen?
If you see the screenshot, you will find these two line.
%x hexadecimal notation (with decimal power of two exponent), e.g. -0x1.23abcp+20
%X upper-case hexadecimal notation, e.g. -0X1.23ABCP+20
there is p in hexadecimal notation, which is wrong notation.
What did you expect to see?
It should be d insted of p, or any other valid hexa character
%x hexadecimal notation (with decimal power of two exponent), e.g. -0x1.23abcd+20
%X upper-case hexadecimal notation, e.g. -0X1.23ABCD+20
The text was updated successfully, but these errors were encountered: