From 37fb7d73da811ea64cf288315decfb03ce2c12c3 Mon Sep 17 00:00:00 2001 From: latent-9 <296084221+latent-9@users.noreply.github.com> Date: Sun, 9 Aug 2026 00:06:35 +1200 Subject: [PATCH] docs: fix strtod function name in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4e251e8..c7cae9e 100644 --- a/README.md +++ b/README.md @@ -204,7 +204,7 @@ When parsing floating-point values, the numbers can sometimes be too small (e.g., `1e-1000`) or too large (e.g., `1e1000`). The C language established the precedent that these small values are out of range. In such cases, it is customary to parse small values to zero and large values to infinity. That is -the behaviour of the C language (e.g., `stdtod`). That is the behaviour followed +the behaviour of the C language (e.g., `strtod`). That is the behaviour followed by the fast_float library. Specifically, we follow Jonathan Wakely's interpretation of the standard: