mirror of
https://github.com/lemire/fast_double_parser.git
synced 2025-04-03 20:04:57 +00:00
Fix a typo in README.md
This commit is contained in:
parent
66657d1a48
commit
4a73a889f0
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ const char * endptr = fast_double_parser::parse_number(string, &x);
|
|||
You must check the value returned (`endptr`): if it is `nullptr`, then the function refused to parse the input.
|
||||
Otherwise, we return a pointer (`const char *`) to the end of the parsed string. The provided
|
||||
pointer (`string`) should point at the beginning of the number: if you must skip whitespace characters,
|
||||
it is your responsability to do so.
|
||||
it is your responsibility to do so.
|
||||
|
||||
|
||||
We expect string numbers to follow [RFC 7159](https://tools.ietf.org/html/rfc7159) (JSON standard). In particular,
|
||||
|
|
Loading…
Add table
Reference in a new issue