From 47ffc1303beb0ed3783e668e33f0e05d053b87ad Mon Sep 17 00:00:00 2001 From: Daniel Lemire Date: Tue, 29 Dec 2020 15:29:46 -0500 Subject: [PATCH] Removing spurious 's'. --- include/fast_float/float_common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fast_float/float_common.h b/include/fast_float/float_common.h index 6900100..022716f 100644 --- a/include/fast_float/float_common.h +++ b/include/fast_float/float_common.h @@ -235,7 +235,7 @@ struct decimal { return mantissa; #endif } - // Generate san exponent matching to_truncated_mantissa() + // Generate an exponent matching to_truncated_mantissa() inline int32_t to_truncated_exponent() { return decimal_point - int32_t(max_digit_without_overflow); }