We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1f627a commit 55a1933Copy full SHA for 55a1933
lib/util/createBoundary.ts
@@ -10,8 +10,8 @@ function createBoundary(size: number): string {
10
let res = ""
11
12
while (size--) {
13
- // I use bitwise `<<` here for slightly more performant string fill.
14
- // It will basically do same thing as `Math.truc()`,
+ // I use bitwise `<<` for slightly more performant string fill.
+ // It will do basically the same thing as `Math.trunc()`,
15
// except it only support signed 32-bit integers.
16
// Because the result of this operation will always be
17
// a number in range `0` and `alphabet.length - 1` (inclusive),
0 commit comments