Skip to content

Commit 002198c

Browse files
committed
docs: Fix simple typo, uniformally -> uniformly
There is a small typo in bitset.js. Should read `uniformly` rather than `uniformally`.
1 parent 26e0994 commit 002198c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bitset.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -976,7 +976,7 @@
976976
// Create an bitset instance
977977
var s = Object.create(BitSet.prototype);
978978

979-
// Fill the vector with random data, uniformally distributed
979+
// Fill the vector with random data, uniformly distributed
980980
for (var i = 0; i < len; i++) {
981981
t.push(Math.random() * 4294967296 | 0);
982982
}

0 commit comments

Comments
 (0)