From dc39efa49d8cee8f193094fc54ba6cfb02970a0c Mon Sep 17 00:00:00 2001 From: Anders Dalvander Date: Wed, 4 Dec 2024 21:03:11 +0100 Subject: [PATCH] readme fix for skip_white_space and allow_leading_plus --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 22d1cc8..5bb3e27 100644 --- a/README.md +++ b/README.md @@ -107,9 +107,9 @@ The library seeks to follow the C++17 (see [28.2.3.(6.1)](https://eel.is/c++draft/charconv.from.chars#6.1)) specification. * The `from_chars` function does not skip leading white-space characters (unless - `fast_float::chars_format::chars_format` is set). + `fast_float::chars_format::skip_white_space` is set). * [A leading `+` sign](https://en.cppreference.com/w/cpp/utility/from_chars) is - forbidden (unless `fast_float::chars_format::skip_white_space` is set). + forbidden (unless `fast_float::chars_format::allow_leading_plus` is set). * It is generally impossible to represent a decimal value exactly as binary floating-point number (`float` and `double` types). We seek the nearest value. We round to an even mantissa when we are in-between two binary floating-point