]> zoso.dev Git - buffer.git/commitdiff
Fix another typo
authorPeter Newman <peternewman@users.noreply.github.com>
Fri, 7 Aug 2020 11:40:35 +0000 (12:40 +0100)
committerGitHub <noreply@github.com>
Fri, 7 Aug 2020 11:40:35 +0000 (12:40 +0100)
test/node/test-buffer-indexof.js

index 24502c3f4582e054b05e9b5de4fd5eef1c8593e7..dcf150bdbc75b79d1f91efa3602ff28758756839 100644 (file)
@@ -479,7 +479,7 @@ assert.equal(511, longBufferString.lastIndexOf(pattern, 1534));
 // "yolo swag swag yolo swag yolo yolo swag" ..., goes on for about 5MB.
 // This is hard to search because it all looks similar, but never repeats.
 
-// countBits returns the number of bits in the binary reprsentation of n.
+// countBits returns the number of bits in the binary representation of n.
 function countBits(n) {
   for (var count = 0; n > 0; count++) {
     n = n & (n - 1); // remove top bit