diff options
author | 2023-09-11 08:50:39 -0700 | |
---|---|---|
committer | 2023-09-11 08:50:39 -0700 | |
commit | 9d6a8ee79df73c4b2160a53d58d8789fff130e95 (patch) | |
tree | 7c14a2f03ffb22819a64ee041cc0855ac3d8a7c3 /docs/api/binary-data.md | |
parent | b55b511f685d0520ba2110b1182980ac80a7b3b7 (diff) | |
download | bun-9d6a8ee79df73c4b2160a53d58d8789fff130e95.tar.gz bun-9d6a8ee79df73c4b2160a53d58d8789fff130e95.tar.zst bun-9d6a8ee79df73c4b2160a53d58d8789fff130e95.zip |
Fix punctuation (#4870)
Diffstat (limited to 'docs/api/binary-data.md')
-rw-r--r-- | docs/api/binary-data.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/api/binary-data.md b/docs/api/binary-data.md index 2ce7c320f..a75d08309 100644 --- a/docs/api/binary-data.md +++ b/docs/api/binary-data.md @@ -74,7 +74,7 @@ dv.getUint8(0); // => 3 // [0x11, 0x0, 0x0, 0x0] ``` -Now lets write a `Uint16` at byte offset `1`. This requires two bytes. We're using the value `513`, which is `2 * 256 + 1`; in bytes, that's `00000010 00000001`. +Now let's write a `Uint16` at byte offset `1`. This requires two bytes. We're using the value `513`, which is `2 * 256 + 1`; in bytes, that's `00000010 00000001`. ```ts dv.setUint16(1, 513); |