Skip to content

Commit e133551

Browse files
committed
fixup: address comment
1 parent b1cb015 commit e133551

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/util.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -899,9 +899,9 @@ function formatRaw(ctx, value, recurseTimes) {
899899
ctx.budget[ctx.indentationLvl] = newLength;
900900
// If any indentationLvl exceeds this limit, limit further inspecting to the
901901
// minimum. Otherwise the recursive algorithm might continue inspecting the
902-
// object even tough the maximum string size (~2 ** 28 on 32 bit systems and
903-
// ~2 ** 64) exceeded. The actual output is not limited at exactly 2 ** 27 but
904-
// a bit higher. This depends on the object shape.
902+
// object even though the maximum string size (~2 ** 28 on 32 bit systems and
903+
// ~2 ** 30 on 64 bit systems) exceeded. The actual output is not limited at
904+
// exactly 2 ** 27 but a bit higher. This depends on the object shape.
905905
// This limit also makes sure that huge objects don't block the event loop
906906
// significantly.
907907
if (newLength > 2 ** 27) {

0 commit comments

Comments
 (0)