aboutsummaryrefslogtreecommitdiff
path: root/lib/std/atomic.zig
diff options
context:
space:
mode:
authorMichael Dusan <michael.dusan@gmail.com>2024-03-15 02:28:50 -0400
committerMichael Dusan <michael.dusan@gmail.com>2024-03-15 02:28:50 -0400
commit5ce40e61c6f5c05925aa5116cc6c61fbae8a6263 (patch)
treec2bdea1b2eeb0b2e9d551e6e5621390739818e3a /lib/std/atomic.zig
parentcf4a2099e1e3c600ee65628153a280f5b2cd51fd (diff)
downloadzig-5ce40e61c6f5c05925aa5116cc6c61fbae8a6263.tar.gz
zig-5ce40e61c6f5c05925aa5116cc6c61fbae8a6263.zip
bsd: debitrot AtomicOrder renames
- complete std.builtin.AtomicOrder renames that were missed from 6067d39522f
Diffstat (limited to 'lib/std/atomic.zig')
-rw-r--r--lib/std/atomic.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/atomic.zig b/lib/std/atomic.zig
index bc8b181715..a485572140 100644
--- a/lib/std/atomic.zig
+++ b/lib/std/atomic.zig
@@ -159,7 +159,7 @@ test Value {
// acquire ensures count decrement and code before
// previous unrefs()s happens-before we call dropFn
// below.
- // Another alternative is to use .AcqRel on the
+ // Another alternative is to use .acq_rel on the
// fetchSub count decrement but it's extra barrier in
// possibly hot path.
rc.count.fence(.acquire);