Skip to content

Commit 43da4f7

Browse files
committed
Corrected number
1 parent 37e6d1e commit 43da4f7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

include/simdjson/internal/numberparsing_tables.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ extern SIMDJSON_DLLIMPORTEXPORT const double power_of_ten[];
5151

5252
// The truncated powers of five from 5^-342 all the way to 5^308
5353
// The mantissa is truncated to 128 bits, and
54-
// never rounded up. Uses about 5KB.
54+
// never rounded up. Uses about 10KB.
5555
extern SIMDJSON_DLLIMPORTEXPORT const uint64_t power_of_five_128[];
5656
} // namespace internal
5757
} // namespace simdjson

src/internal/numberparsing_tables.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ SIMDJSON_DLLIMPORTEXPORT const double power_of_ten[] = {
2323

2424
// The truncated powers of five from 5^-342 all the way to 5^308
2525
// The mantissa is truncated to 128 bits, and
26-
// never rounded up. Uses about 5KB.
26+
// never rounded up. Uses about 10KB.
2727
SIMDJSON_DLLIMPORTEXPORT const uint64_t power_of_five_128[]= {
2828
0xeef453d6923bd65a,0x113faa2906a13b3f,
2929
0x9558b4661b6565f8,0x4ac7ca59a424c507,

0 commit comments

Comments
 (0)