From 1f1e9b4a09bd3d5514ab2c38e0eef0f82fbcb2fb Mon Sep 17 00:00:00 2001 From: Sam Thorogood Date: Tue, 28 Apr 2020 11:21:37 +1000 Subject: [PATCH] fix bad apostrophe --- text.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/text.js b/text.js index e1fdc68..dd9257c 100644 --- a/text.js +++ b/text.js @@ -140,7 +140,7 @@ FastTextDecoder.prototype['decode'] = function(buffer, options={stream: false}) throw new Error(`Failed to decode: the 'stream' option is unsupported.`); } - // Accept Uint8Array's as-is. + // Accept Uint8Array instances as-is. let bytes = buffer; // Look for ArrayBufferView, which isn't a real type, but basically represents