1
0
mirror of https://github.com/golang/go synced 2024-09-24 05:10:13 -06:00

doc/go1.20: fix links to new strings functions

Links under strings package were linking to the bytes versions of the functions.
This commit is contained in:
Piers 2023-01-04 16:34:26 +00:00 committed by GitHub
parent 9955a7e9bb
commit 8849285122
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1121,10 +1121,10 @@ proxyHandler := &httputil.ReverseProxy{
<dd>
<p><!-- CL 407176, https://go.dev/issue/42537 -->
The new
<a href="/pkg/bytes/#CutPrefix"><code>CutPrefix</code></a> and
<a href="/pkg/bytes/#CutSuffix"><code>CutSuffix</code></a> functions
are like <a href="/pkg/bytes/#TrimPrefix"><code>TrimPrefix</code></a>
and <a href="/pkg/bytes/#TrimSuffix"><code>TrimSuffix</code></a>
<a href="/pkg/strings/#CutPrefix"><code>CutPrefix</code></a> and
<a href="/pkg/strings/#CutSuffix"><code>CutSuffix</code></a> functions
are like <a href="/pkg/strings/#TrimPrefix"><code>TrimPrefix</code></a>
and <a href="/pkg/strings/#TrimSuffix"><code>TrimSuffix</code></a>
but also report whether the string was trimmed.
</p>