aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuel T Odeke <emmanuel@orijtech.com>2019-08-20 23:30:43 -0600
committerAndrew Bonventre <andybons@golang.org>2019-08-22 17:40:31 +0000
commitbd2e28190d4dcb710eb2d6c7026aa4bd40301383 (patch)
tree103a8b451949400d57bc7cef855c9ca141e73a49
parented4f3f313438b8765da6c4605060529761db0797 (diff)
downloadgo-bd2e28190d4dcb710eb2d6c7026aa4bd40301383.tar.gz
go-bd2e28190d4dcb710eb2d6c7026aa4bd40301383.zip
[release-branch.go1.13] strconv: update documentation
Fixes #33750. Updates #31197. Change-Id: I26f63cef57e5f0eec85b84554c82f6d47b4f41a1 Reviewed-on: https://go-review.googlesource.com/c/go/+/191078 Reviewed-by: Robert Griesemer <gri@golang.org> (cherry picked from commit d9b13233378668a4fd24ac5d044e9d550cd2a8be) Reviewed-on: https://go-review.googlesource.com/c/go/+/191168 Run-TryBot: Andrew Bonventre <andybons@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Emmanuel Odeke <emm.odeke@gmail.com>
-rw-r--r--src/strconv/atof.go2
-rw-r--r--src/strconv/atoi.go3
2 files changed, 3 insertions, 2 deletions
diff --git a/src/strconv/atof.go b/src/strconv/atof.go
index 0903fa155a..190b25fbf5 100644
--- a/src/strconv/atof.go
+++ b/src/strconv/atof.go
@@ -643,7 +643,7 @@ func atof64(s string) (f float64, err error) {
// ParseFloat returns the nearest floating-point number rounded
// using IEEE754 unbiased rounding.
// (Parsing a hexadecimal floating-point value only rounds when
-// there are more bits in the hexadecimal representatiton than
+// there are more bits in the hexadecimal representation than
// will fit in the mantissa.)
//
// The errors that ParseFloat returns have concrete type *NumError
diff --git a/src/strconv/atoi.go b/src/strconv/atoi.go
index 31774d0c9a..0233f14b40 100644
--- a/src/strconv/atoi.go
+++ b/src/strconv/atoi.go
@@ -154,7 +154,8 @@ func ParseUint(s string, base int, bitSize int) (uint64, error) {
//
// If base == 0, the base is implied by the string's prefix:
// base 2 for "0b", base 8 for "0" or "0o", base 16 for "0x",
-// and base 10 otherwise.
+// and base 10 otherwise. Also, for base == 0 only, underscore
+// characters are permitted per the Go integer literal syntax.
// If base is below 0, is 1, or is above 36, an error is returned.
//
// The bitSize argument specifies the integer type