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://github.com/hyperium/http/blob/78e3d37563b0fe83886abffdcd8569117d45fee9/src/header/value.rs#L421|
The comment here states:
// The largest decimal number in 15 digits: // It wold be 10.pow(15) - 1, but this is a constant // version. if num as u64 > 999_999_999_999_999_999 {
However, 999_999_999_999_999_999 is actually 18 digits.
999_999_999_999_999_999
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://github.com/hyperium/http/blob/78e3d37563b0fe83886abffdcd8569117d45fee9/src/header/value.rs#L421|
The comment here states:
However,
999_999_999_999_999_999
is actually 18 digits.The text was updated successfully, but these errors were encountered: