From d92df059f43140f93fd5e4277beb4a48ee998952 Mon Sep 17 00:00:00 2001 From: Peter Newman Date: Fri, 7 Aug 2020 12:40:35 +0100 Subject: [PATCH] Fix another typo --- test/node/test-buffer-indexof.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/node/test-buffer-indexof.js b/test/node/test-buffer-indexof.js index 24502c3..dcf150b 100644 --- a/test/node/test-buffer-indexof.js +++ b/test/node/test-buffer-indexof.js @@ -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 -- 2.34.1