From 87822570b1ed630c6557eacbc4e0c1df9cb9fcc8 Mon Sep 17 00:00:00 2001 From: Dominik Moritz Date: Sat, 7 Oct 2023 22:29:46 -0400 Subject: [PATCH] Fix typo (#295) --- 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 } } -- 2.34.1