From f669aafcf2a32026291ffc3012172b4a7aee889d Mon Sep 17 00:00:00 2001 From: Daniel Lemire Date: Mon, 9 Mar 2020 17:55:26 -0400 Subject: [PATCH] Correcting typo --- src/generic/numberparsing.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/generic/numberparsing.h b/src/generic/numberparsing.h index b8d481360..d883917d6 100644 --- a/src/generic/numberparsing.h +++ b/src/generic/numberparsing.h @@ -82,7 +82,7 @@ really_inline bool is_integer(char c) { } // We need to check that the character following a zero is valid. This is -// probably frequent and it is hard than it looks. We are building all of this +// probably frequent and it is harder than it looks. We are building all of this // just to differentiate between 0x1 (invalid), 0,1 (valid) 0e1 (valid)... const bool structural_or_whitespace_or_exponent_or_decimal_negated[256] = { 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, #endif // SIMDJSON_SKIPNUMBERPARSING } -} // namespace numberparsing \ No newline at end of file +} // namespace numberparsing