diff options
author | Ian Lance Taylor <iant@golang.org> | 2016-02-03 18:56:24 -0800 |
---|---|---|
committer | Ian Lance Taylor <iant@golang.org> | 2016-02-04 05:11:55 +0000 |
commit | fd24e6d561d672362ebe4a8231aa43f1c54b164a (patch) | |
tree | 3e290d8c559e1a73ebcdaebde6bc6873e5a673a1 | |
parent | 91911e39f0fdfecc5453f9eca7ff74215ffb28a2 (diff) | |
download | go-git-fd24e6d561d672362ebe4a8231aa43f1c54b164a.tar.gz |
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 <iant@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Reviewed-by: Minux Ma <minux@golang.org>
-rw-r--r-- | doc/go1.6.html | 8 |
1 files changed, 5 insertions, 3 deletions
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. <li> The <a href="/pkg/strconv/"><code>strconv</code></a> package adds <a href="/pkg/strconv/#IsGraphic"><code>IsGraphic</code></a>, +similar to <a href="/pkg/strconv/#IsPrint"><code>IsPrint</code></a>. +It also adds <a href="/pkg/strconv/#QuoteToGraphic"><code>QuoteToGraphic</code></a>, <a href="/pkg/strconv/#QuoteRuneToGraphic"><code>QuoteRuneToGraphic</code></a>, <a href="/pkg/strconv/#AppendQuoteToGraphic"><code>AppendQuoteToGraphic</code></a>, and <a href="/pkg/strconv/#AppendQuoteRuneToGraphic"><code>AppendQuoteRuneToGraphic</code></a>, analogous to -<a href="/pkg/strconv/#IsPrint"><code>IsPrint</code></a>, -<a href="/pkg/strconv/#QuoteToPrint"><code>QuoteToPrint</code></a>, +<a href="/pkg/strconv/#QuoteToASCII"><code>QuoteToASCII</code></a>, +<a href="/pkg/strconv/#QuoteRuneToASCII"><code>QuoteRuneToASCII</code></a>, and so on. -The <code>Print</code> family escapes all space characters except ASCII space (U+0020). +The <code>ASCII</code> family escapes all space characters except ASCII space (U+0020). In contrast, the <code>Graphic</code> family does not escape any Unicode space characters (category Zs). </li> |