Skip to content

Commit c0582c2

Browse files
committed
typos in the comments
1 parent 0a9257e commit c0582c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/fast_float/ascii_number.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ parse_number_string(UC const *p, UC const *pend,
441441
if (digit_count > 19) {
442442
answer.too_many_digits = true;
443443
// Let us start again, this time, avoiding overflows.
444-
// We don't need to check if is_integer, since we use the
444+
// We don't need to call if is_integer, since we use the
445445
// pre-tokenized spans from above.
446446
i = 0;
447447
p = answer.integer.ptr;
@@ -451,7 +451,7 @@ parse_number_string(UC const *p, UC const *pend,
451451
i = i * 10 + uint64_t(*p - UC('0'));
452452
++p;
453453
}
454-
if (i >= minimal_nineteen_digit_integer) { // We have a big integers
454+
if (i >= minimal_nineteen_digit_integer) { // We have a big integer
455455
exponent = end_of_integer_part - p + exp_number;
456456
} else { // We have a value with a fractional component.
457457
p = answer.fraction.ptr;

0 commit comments

Comments
 (0)