Skip to content

Commit 3a11614

Browse files
authored
Fix doc typo
1 parent f209412 commit 3a11614

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/sync/atomic.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2830,7 +2830,7 @@ unsafe fn atomic_umin<T: Copy>(dst: *mut T, val: T, order: Ordering) -> T {
28302830
/// A fence 'A' which has (at least) [`Release`] ordering semantics, synchronizes
28312831
/// with a fence 'B' with (at least) [`Acquire`] semantics, if and only if there
28322832
/// exist operations X and Y, both operating on some atomic object 'M' such
2833-
/// that A is sequenced before X, Y is synchronized before B and Y observes
2833+
/// that A is sequenced before X, Y is sequenced before B and Y observes
28342834
/// the change to M. This provides a happens-before dependence between A and B.
28352835
///
28362836
/// ```text

0 commit comments

Comments
 (0)