-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
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
Mention explicitly that unsignedInteger must not be larger than Long.MAX_VALUE. #841
Mention explicitly that unsignedInteger must not be larger than Long.MAX_VALUE. #841
Conversation
… Java constant `Long.MAX_VALUE`. =
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry forgot about this one!
@@ -760,6 +760,11 @@ upperBound ::= unsignedInteger | |||
unsignedInteger ::= [0-9]+ | |||
---- | |||
|
|||
[NOTE] | |||
==== | |||
The `unsignedInteger` must not be larger than the Java constant `Long.MAX_VALUE`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe this is not necessary, but helpful if readers are both unaware and interested in what the Long.MAX_VALUE is? If you agree - same comment goes for below note.
The `unsignedInteger` must not be larger than the Java constant `Long.MAX_VALUE`. | |
The `unsignedInteger` must not be larger than the Java constant `Long.MAX_VALUE` (2^63-1). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good idea, added.
Thanks for the documentation updates. The preview documentation has now been torn down - reopening this PR will republish it. |
…MAX_VALUE. (#841) (#864) Co-authored-by: Louise Söderström <[email protected]>
No description provided.