aboutsummaryrefslogtreecommitdiff
path: root/src/sync
diff options
context:
space:
mode:
Diffstat (limited to 'src/sync')
-rw-r--r--src/sync/atomic/doc.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sync/atomic/doc.go b/src/sync/atomic/doc.go
index 472ab9df04..c22d1159af 100644
--- a/src/sync/atomic/doc.go
+++ b/src/sync/atomic/doc.go
@@ -7,7 +7,7 @@
//
// These functions require great care to be used correctly.
// Except for special, low-level applications, synchronization is better
-// done with channels or the facilities of the sync package.
+// done with channels or the facilities of the [sync] package.
// Share memory by communicating;
// don't communicate by sharing memory.
//