From 66685fb7dd72531aed6f1b3f4de43799bb26c052 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Sun, 19 Jun 2022 22:57:10 -0700 Subject: [PATCH] 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 --- doc/go1.19.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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