]> Cypherpunks.ru repositories - gostls13.git/commitdiff
doc/go1.20: fix links to new strings functions
authorPiers <go.dev@hellopiers.io>
Wed, 4 Jan 2023 16:45:22 +0000 (16:45 +0000)
committerGopher Robot <gobot@golang.org>
Wed, 4 Jan 2023 21:15:31 +0000 (21:15 +0000)
Links under strings package were linking to the bytes versions of the functions.

Change-Id: If6ebe37fede8e417f8683695783aa767bc01e9c7
GitHub-Last-Rev: 8849285122cb58c17b5979144649075861d8a134
GitHub-Pull-Request: golang/go#57579
Reviewed-on: https://go-review.googlesource.com/c/go/+/460458
TryBot-Result: Gopher Robot <gobot@golang.org>
Run-TryBot: Ian Lance Taylor <iant@google.com>
Reviewed-by: Heschi Kreinick <heschi@google.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
Auto-Submit: Ian Lance Taylor <iant@google.com>

doc/go1.20.html

index 6da4f6df231e73e0ed6aaecb6c445e62768bebda..23fa82c41b3b392c9cecacaa691757fe6a1a2dc6 100644 (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>