]> zoso.dev Git - buffer.git/commitdiff
Fix typo (#295)
authorDominik Moritz <domoritz@gmail.com>
Sun, 8 Oct 2023 02:29:46 +0000 (22:29 -0400)
committerGitHub <noreply@github.com>
Sun, 8 Oct 2023 02:29:46 +0000 (13:29 +1100)
index.js

index cc1992621cf0db058930ff1a7110c21fdcd3e6a3..cc6371fae4f30bfa87598d163cb375528a22a016 100644 (file)
--- 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 } }