From 9d6a8ee79df73c4b2160a53d58d8789fff130e95 Mon Sep 17 00:00:00 2001 From: Matthew Yu <56417255+matthewyu01@users.noreply.github.com> Date: Mon, 11 Sep 2023 08:50:39 -0700 Subject: Fix punctuation (#4870) --- docs/api/binary-data.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/api/binary-data.md') 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); -- cgit v1.2.3