Merge pull request #68 from striezel-stash/readme-typo

Fix a typo in README.md
This commit is contained in:
Daniel Lemire 2022-11-15 18:25:41 -05:00 committed by GitHub
commit 7aebf2f747
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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,