From d43ddc1f3fb25b4338433435caae7e6f4b3138a9 Mon Sep 17 00:00:00 2001 From: "90364136+butterfly1924@users.noreply.github.com" <90364136+butterfly1924@users.noreply.github.com> Date: Mon, 6 Jun 2022 05:10:38 +0000 Subject: [PATCH] strconv: fix typo in atof.go strings for 'NaN' -> string for 'NaN' Change-Id: Ia415644a1b651e6ef9996ad24dd9708a60e57dfc GitHub-Last-Rev: 877f1c3eb1dc885915ae75385c5d38ee6f5fd9b1 GitHub-Pull-Request: golang/go#53246 Reviewed-on: https://go-review.googlesource.com/c/go/+/410494 Auto-Submit: Ian Lance Taylor TryBot-Result: Gopher Robot Run-TryBot: Ian Lance Taylor Reviewed-by: Ian Lance Taylor Reviewed-by: Dmitri Shuralyov Reviewed-by: Cherry Mui --- src/strconv/atof.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/strconv/atof.go b/src/strconv/atof.go index c26c34208c..8fc90425f6 100644 --- a/src/strconv/atof.go +++ b/src/strconv/atof.go @@ -688,7 +688,7 @@ func atof64(s string) (f float64, n int, err error) { // away from the largest floating point number of the given size, // ParseFloat returns f = ±Inf, err.Err = ErrRange. // -// ParseFloat recognizes the strings "NaN", and the (possibly signed) strings "Inf" and "Infinity" +// ParseFloat recognizes the string "NaN", and the (possibly signed) strings "Inf" and "Infinity" // as their respective special floating point values. It ignores case when matching. // // [floating-point literals]: https://go.dev/ref/spec#Floating-point_literals -- 2.50.0