From 1cc20b7f1bb135120e7297b367608dc1b87e53cc Mon Sep 17 00:00:00 2001 From: Dominik Moritz Date: Fri, 14 May 2021 21:49:00 -0700 Subject: [PATCH] Fix typo --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index cc19926..cc6371f 100644 --- a/index.js +++ b/index.js @@ -47,7 +47,7 @@ if (!Buffer.TYPED_ARRAY_SUPPORT && typeof console !== 'undefined' && } function typedArraySupport () { - // Can typed array instances can be augmented? + // Can typed array instances be augmented? try { const arr = new Uint8Array(1) const proto = { foo: function () { return 42 } }