Skip to content

Commit

Permalink
Update src/generator/writers/writeStdlib.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Anton Trunov <anton.a.trunov@gmail.com>
  • Loading branch information
Gusarich and anton-trunov authored Mar 20, 2024
1 parent 708cadc commit dc741ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/generator/writers/writeStdlib.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1240,7 +1240,7 @@ export function writeStdlib(ctx: WriterContext) {
}
int result = 0;
while (num >= base) {
num = num / base;
num /= base;
result += 1;
}
return result;
Expand Down

0 comments on commit dc741ae

Please sign in to comment.