From 0d99b909838db218ceea815acc02374f8e1c1871 Mon Sep 17 00:00:00 2001 From: Andrew Lygin Date: Thu, 19 May 2022 00:25:14 +0300 Subject: [PATCH] Fix doc typo --- library/core/src/sync/atomic.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/sync/atomic.rs b/library/core/src/sync/atomic.rs index a01f3fbad56..36df5c3beb3 100644 --- a/library/core/src/sync/atomic.rs +++ b/library/core/src/sync/atomic.rs @@ -2830,7 +2830,7 @@ unsafe fn atomic_umin(dst: *mut T, val: T, order: Ordering) -> T { /// A fence 'A' which has (at least) [`Release`] ordering semantics, synchronizes /// with a fence 'B' with (at least) [`Acquire`] semantics, if and only if there /// exist operations X and Y, both operating on some atomic object 'M' such -/// that A is sequenced before X, Y is synchronized before B and Y observes +/// that A is sequenced before X, Y is sequenced before B and Y observes /// the change to M. This provides a happens-before dependence between A and B. /// /// ```text