]> zoso.dev Git - buffer.git/commitdiff
Fix some typos
authorPeter Newman <peternewman@users.noreply.github.com>
Fri, 7 Aug 2020 11:39:12 +0000 (12:39 +0100)
committerGitHub <noreply@github.com>
Fri, 7 Aug 2020 11:39:12 +0000 (12:39 +0100)
index.js

index e87bfaaa76ec628aebfeadf7cca0935cefa74257..7097321086e5968e8fe01bd695a8c15e5847231b 100644 (file)
--- a/index.js
+++ b/index.js
@@ -197,7 +197,7 @@ function alloc (size, fill, encoding) {
   if (fill !== undefined) {
     // Only pay attention to encoding if it's a string. This
     // prevents accidentally sending in a number that would
-    // be interpretted as a start offset.
+    // be interpreted as a start offset.
     return typeof encoding === 'string'
       ? createBuffer(size).fill(fill, encoding)
       : createBuffer(size).fill(fill)
@@ -490,7 +490,7 @@ function slowToString (encoding, start, end) {
     return ''
   }
 
-  // Force coersion to uint32. This will also coerce falsey/NaN values to 0.
+  // Force coercion to uint32. This will also coerce falsey/NaN values to 0.
   end >>>= 0
   start >>>= 0