From 82ea4af1079a106c3f1397746ead966fdf5c11ac Mon Sep 17 00:00:00 2001 From: 0xflotus <0xflotus@gmail.com> Date: Thu, 3 Dec 2020 19:14:22 +0100 Subject: [PATCH] fix: possibly small typo error --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 18611bb..feec983 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ struct from_chars_result { ``` It parses the character sequence [first,last) for a number. It parses floating-point numbers expecting -a locale-indepent format equivalent to what is used by `std::strtod` in the default ("C") locale. +a locale-independent format equivalent to what is used by `std::strtod` in the default ("C") locale. The resulting floating-point value is the closest floating-point values (using either float or double), using the "round to even" convention for values that would otherwise fall right in-between two values. That is, we provide exact parsing according to the IEEE standard.