Skip to content

Commit f669aaf

Browse files
committed
Correcting typo
1 parent 66a2807 commit f669aaf

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/generic/numberparsing.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ really_inline bool is_integer(char c) {
8282
}
8383

8484
// We need to check that the character following a zero is valid. This is
85-
// probably frequent and it is hard than it looks. We are building all of this
85+
// probably frequent and it is harder than it looks. We are building all of this
8686
// just to differentiate between 0x1 (invalid), 0,1 (valid) 0e1 (valid)...
8787
const bool structural_or_whitespace_or_exponent_or_decimal_negated[256] = {
8888
1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
@@ -557,4 +557,4 @@ really_inline bool parse_number(UNUSED const uint8_t *const buf,
557557
#endif // SIMDJSON_SKIPNUMBERPARSING
558558
}
559559

560-
} // namespace numberparsing
560+
} // namespace numberparsing

0 commit comments

Comments
 (0)