Fix spelling

Run clang-format to reformat the long lines.
This commit is contained in:
Jonathan Wakely 2026-06-02 15:10:14 +01:00
parent f0ed8cdf52
commit 1b11407da9

View File

@ -7,12 +7,12 @@
namespace fast_float {
/**
* This function 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. 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.
* parses floating-point numbers expecting 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.
*
* Given a successful parse, the pointer (`ptr`) in the returned value is set to
* point right after the parsed number, and the `value` referenced is set to the