Skip to content

Commit f1f627a

Browse files
committed
Fix a typo.
1 parent e209e06 commit f1f627a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/util/createBoundary.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ function createBoundary(size: number): string {
1515
// except it only support signed 32-bit integers.
1616
// Because the result of this operation will always be
1717
// a number in range `0` and `alphabet.length - 1` (inclusive),
18-
// so we don't need `Math.floor()` too.
18+
// we don't need `Math.floor()` too.
1919
/* eslint no-bitwise: ["error", {"allow": ["<<"]}] */
2020
res += alphabet[(Math.random() * alphabet.length) << 0]
2121
}

0 commit comments

Comments
 (0)