doc/go1.19: fix a few links that were missing trailing slashes

They were part of a chain of three redirects. Now it's only two,
but that's #54081.

Change-Id: Ibfe6a17a372df61df40124892951b48577e4ced9
Reviewed-on: https://go-review.googlesource.com/c/go/+/419634
Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org>
Reviewed-by: Ian Lance Taylor <iant@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
This commit is contained in:
Brad Fitzpatrick 2022-07-26 19:28:00 -07:00 committed by Gopher Robot
parent f32519e5fb
commit dee3efd9f8

View file

@ -77,7 +77,7 @@ As part of this change, <a href="/cmd/gofmt"><code>gofmt</code></a>
now reformats doc comments to make their rendered meaning clearer. now reformats doc comments to make their rendered meaning clearer.
See “<a href="/doc/comment">Go Doc Comments</a> See “<a href="/doc/comment">Go Doc Comments</a>
for syntax details and descriptions of common mistakes now highlighted by <code>gofmt</code>. for syntax details and descriptions of common mistakes now highlighted by <code>gofmt</code>.
As another part of this change, the new package <a href="/pkg/go/doc/comment">go/doc/comment</a> As another part of this change, the new package <a href="/pkg/go/doc/comment/">go/doc/comment</a>
provides parsing and reformatting of doc comments provides parsing and reformatting of doc comments
as well as support for rendering them to HTML, Markdown, and text. as well as support for rendering them to HTML, Markdown, and text.
</p> </p>
@ -399,7 +399,7 @@ as well as support for rendering them to HTML, Markdown, and text.
<p><!-- CL 400974 --><!-- https://go.dev/issue/45428 --> <p><!-- CL 400974 --><!-- https://go.dev/issue/45428 -->
The <code>GODEBUG</code> option <code>tls10default=1</code> has been The <code>GODEBUG</code> option <code>tls10default=1</code> has been
removed. It is still possible to enable TLS 1.0 client-side by setting removed. It is still possible to enable TLS 1.0 client-side by setting
<a href="/pkg/crypto/tls#Config.MinVersion"><code>Config.MinVersion</code></a>. <a href="/pkg/crypto/tls/#Config.MinVersion"><code>Config.MinVersion</code></a>.
</p> </p>
<p><!-- CL 384894 --> <p><!-- CL 384894 -->
@ -464,7 +464,7 @@ as well as support for rendering them to HTML, Markdown, and text.
The <a href="/pkg/crypto/x509/#ParseCRL"><code>ParseCRL</code></a> and The <a href="/pkg/crypto/x509/#ParseCRL"><code>ParseCRL</code></a> and
<a href="/pkg/crypto/x509/#ParseDERCRL"><code>ParseDERCRL</code></a> functions <a href="/pkg/crypto/x509/#ParseDERCRL"><code>ParseDERCRL</code></a> functions
are now deprecated in favor of <code>ParseRevocationList</code>. are now deprecated in favor of <code>ParseRevocationList</code>.
The <a href="/pkg/crypto/x509#Certificate.CheckCRLSignature"><code>Certificate.CheckCRLSignature</code></a> The <a href="/pkg/crypto/x509/#Certificate.CheckCRLSignature"><code>Certificate.CheckCRLSignature</code></a>
method is deprecated in favor of <code>RevocationList.CheckSignatureFrom</code>. method is deprecated in favor of <code>RevocationList.CheckSignatureFrom</code>.
</p> </p>
@ -476,18 +476,18 @@ as well as support for rendering them to HTML, Markdown, and text.
</dd> </dd>
</dl><!-- crypto/x509 --> </dl><!-- crypto/x509 -->
<dl id="crypto/x509/pkix"><dt><a href="/pkg/crypto/x509/pkix">crypto/x509/pkix</a></dt> <dl id="crypto/x509/pkix"><dt><a href="/pkg/crypto/x509/pkix/">crypto/x509/pkix</a></dt>
<dd> <dd>
<p><!-- CL 390834 --> <p><!-- CL 390834 -->
The types <a href="/pkg/crypto/x509/pkix#CertificateList"><code>CertificateList</code></a> and The types <a href="/pkg/crypto/x509/pkix/#CertificateList"><code>CertificateList</code></a> and
<a href="/pkg/crypto/x509/pkix#TBSCertificateList"><code>TBSCertificateList</code></a> <a href="/pkg/crypto/x509/pkix/#TBSCertificateList"><code>TBSCertificateList</code></a>
have been deprecated. The new <a href="#crypto/x509"><code>crypto/x509</code> CRL functionality</a> have been deprecated. The new <a href="#crypto/x509"><code>crypto/x509</code> CRL functionality</a>
should be used instead. should be used instead.
</p> </p>
</dd> </dd>
</dl><!-- crypto/x509/pkix --> </dl><!-- crypto/x509/pkix -->
<dl id="debug/elf"><dt><a href="/pkg/debug/elf">debug/elf</a></dt> <dl id="debug/elf"><dt><a href="/pkg/debug/elf/">debug/elf</a></dt>
<dd> <dd>
<p><!-- CL 396735 --> <p><!-- CL 396735 -->
The new <code>EM_LONGARCH</code> and <code>R_LARCH_*</code> constants The new <code>EM_LONGARCH</code> and <code>R_LARCH_*</code> constants
@ -583,7 +583,7 @@ as well as support for rendering them to HTML, Markdown, and text.
<dd> <dd>
<p><!-- CL 403696 --> <p><!-- CL 403696 -->
The parser now recognizes <code>~x</code> as a unary expression with operator The parser now recognizes <code>~x</code> as a unary expression with operator
<a href="/pkg/go/token#TILDE">token.TILDE</a>, <a href="/pkg/go/token/#TILDE">token.TILDE</a>,
allowing better error recovery when a type constraint such as <code>~int</code> is used in an incorrect context. allowing better error recovery when a type constraint such as <code>~int</code> is used in an incorrect context.
</p> </p>
</dd> </dd>
@ -908,7 +908,7 @@ as well as support for rendering them to HTML, Markdown, and text.
<dd> <dd>
<p><!-- CL 400795 --> <p><!-- CL 400795 -->
When tracing and the When tracing and the
<a href="/pkg/runtime/pprof#StartCPUProfile">CPU profiler</a> are <a href="/pkg/runtime/pprof/#StartCPUProfile">CPU profiler</a> are
enabled simultaneously, the execution trace includes CPU profile enabled simultaneously, the execution trace includes CPU profile
samples as instantaneous events. samples as instantaneous events.
</p> </p>