Skip to content

Commit f3c6051

Browse files
authored
Fix buffer.writeu16 int number range (#919)
## Changes This pr fixes the integer number range for the value parameter in buffer.writeu16. Which is currently written as [0, 65536], where it should be [0, 65535] ## Checks By submitting your pull request for review, you agree to the following: - [x] This contribution was created in whole or in part by me, and I have the right to submit it under the terms of this repository's open source licenses. - [x] I understand and agree that this contribution and a record of it are public, maintained indefinitely, and may be redistributed under the terms of this repository's open source licenses. - [x] To the best of my knowledge, all proposed changes are accurate.
1 parent bf8c2e1 commit f3c6051

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/en-us/reference/engine/libraries/buffer.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ functions:
366366
type: number
367367
default:
368368
summary: |
369-
An integer number in range [0, 65,536].
369+
An integer number in range [0, 65,535].
370370
returns:
371371
- type: void
372372
summary: ''

0 commit comments

Comments
 (0)