From: Dominik Moritz Date: Sun, 8 Oct 2023 02:29:46 +0000 (-0400) Subject: Fix typo (#295) X-Git-Url: https://zoso.dev/?a=commitdiff_plain;h=87822570b1ed630c6557eacbc4e0c1df9cb9fcc8;p=buffer.git Fix typo (#295) --- 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 } }