From: Ian Lance Taylor Date: Thu, 4 Feb 2016 02:56:24 +0000 (-0800) Subject: doc: correct old function names in strconv comments in go1.6 doc X-Git-Tag: go1.6~1^2~37 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=fd24e6d561d672362ebe4a8231aa43f1c54b164a;p=gostls13.git doc: correct old function names in strconv comments in go1.6 doc Fixes #14219. Change-Id: Id398dcfe6e9978d7eefddcdaaaa2256c16237cf3 Reviewed-on: https://go-review.googlesource.com/19207 Run-TryBot: Ian Lance Taylor TryBot-Result: Gobot Gobot Reviewed-by: Brad Fitzpatrick Reviewed-by: Minux Ma --- diff --git a/doc/go1.6.html b/doc/go1.6.html index b4a3900aa0..6e3710cbad 100644 --- a/doc/go1.6.html +++ b/doc/go1.6.html @@ -875,16 +875,18 @@ should only be used when contention has been observed.
  • The strconv package adds IsGraphic, +similar to IsPrint. +It also adds QuoteToGraphic, QuoteRuneToGraphic, AppendQuoteToGraphic, and AppendQuoteRuneToGraphic, analogous to -IsPrint, -QuoteToPrint, +QuoteToASCII, +QuoteRuneToASCII, and so on. -The Print family escapes all space characters except ASCII space (U+0020). +The ASCII family escapes all space characters except ASCII space (U+0020). In contrast, the Graphic family does not escape any Unicode space characters (category Zs).