From: Ian Lance Taylor Date: Mon, 20 Jun 2022 05:57:10 +0000 (-0700) Subject: doc/go1.19: use correct link to sync/atomic docs X-Git-Tag: go1.19rc1~90 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=66685fb7dd72531aed6f1b3f4de43799bb26c052;p=gostls13.git doc/go1.19: use correct link to sync/atomic docs For #51400 Fixes #53453 Change-Id: Ie11182a16299cf26d03970d6aa9bfe03caa56ea4 Reviewed-on: https://go-review.googlesource.com/c/go/+/413235 TryBot-Result: Gopher Robot Run-TryBot: Ian Lance Taylor Reviewed-by: Dmitri Shuralyov Reviewed-by: Dmitri Shuralyov Reviewed-by: Ian Lance Taylor Auto-Submit: Ian Lance Taylor --- diff --git a/doc/go1.19.html b/doc/go1.19.html index 4495c1d3e0..b323b0d182 100644 --- a/doc/go1.19.html +++ b/doc/go1.19.html @@ -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 new types in the sync/atomic package + Go 1.19 introduces new types in the sync/atomic package that make it easier to use atomic values, such as atomic.Int64 and