File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1021,11 +1021,11 @@ impl Drop for PanicGuard {
1021
1021
///
1022
1022
/// # Memory Ordering
1023
1023
///
1024
- /// Calls to `park ` _synchronize-with_ calls to `unpark `, meaning that memory
1024
+ /// Calls to `unpark ` _synchronize-with_ calls to `park `, meaning that memory
1025
1025
/// operations performed before a call to `unpark` are made visible to the thread that
1026
1026
/// consumes the token and returns from `park`. Note that all `park` and `unpark`
1027
- /// operations for a given thread form a total order and `park` synchronizes-with
1028
- /// _all_ prior `unpark` operations .
1027
+ /// operations for a given thread form a total order and _all_ prior `unpark` operations
1028
+ /// synchronize-with `park` .
1029
1029
///
1030
1030
/// In atomic ordering terms, `unpark` performs a `Release` operation and `park`
1031
1031
/// performs the corresponding `Acquire` operation. Calls to `unpark` for the same
You can’t perform that action at this time.
0 commit comments