From 7fc07e2d5ea57ceb0c8f99aa2ac205004d0d7ef3 Mon Sep 17 00:00:00 2001 From: Daniel Lemire Date: Wed, 16 Sep 2020 11:11:49 -0400 Subject: [PATCH] Correcting typo --- src/generic/stage2/numberparsing.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/generic/stage2/numberparsing.h b/src/generic/stage2/numberparsing.h index 93f9a945a..dac56ce6b 100644 --- a/src/generic/stage2/numberparsing.h +++ b/src/generic/stage2/numberparsing.h @@ -62,7 +62,7 @@ simdjson_really_inline bool compute_float_64(int64_t power, uint64_t i, bool neg return true; } // When 22 < power && power < 22 + 16, we could - // hope for another, secondary fast path. It wa + // hope for another, secondary fast path. It was // described by David M. Gay in "Correctly rounded // binary-decimal and decimal-binary conversions." (1990) // If you need to compute i * 10^(22 + x) for x < 16,