]> Cypherpunks repositories - gostls13.git/commitdiff
doc/go1.19: use correct link to sync/atomic docs
authorIan Lance Taylor <iant@golang.org>
Mon, 20 Jun 2022 05:57:10 +0000 (22:57 -0700)
committerGopher Robot <gobot@golang.org>
Tue, 21 Jun 2022 19:48:04 +0000 (19:48 +0000)
For #51400
Fixes #53453

Change-Id: Ie11182a16299cf26d03970d6aa9bfe03caa56ea4
Reviewed-on: https://go-review.googlesource.com/c/go/+/413235
TryBot-Result: Gopher Robot <gobot@golang.org>
Run-TryBot: Ian Lance Taylor <iant@google.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
Auto-Submit: Ian Lance Taylor <iant@google.com>

doc/go1.19.html

index 4495c1d3e0e1ea20f2b71ba367b253f57196c502..b323b0d1828d0694c601973aa8ef06fdeff3147b 100644 (file)
@@ -35,7 +35,7 @@ Do not send CLs removing the interior tags from such phrases.
   the memory model used by C, C++, Java, JavaScript, Rust, and Swift.
   Go only provides sequentially consistent atomics, not any of the more relaxed forms found in other languages.
   Along with the memory model update,
-  Go 1.19 introduces <a href="#sync/atomic">new types in the <code>sync/atomic</code> package</a>
+  Go 1.19 introduces <a href="#atomic_types">new types in the <code>sync/atomic</code> package</a>
   that make it easier to use atomic values, such as
   <a href="/pkg/sync/atomic/#Int64">atomic.Int64</a>
   and