Commit 9517769 1 parent 81eef2d commit 9517769 Copy full SHA for 9517769
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 @@ -1001,11 +1001,11 @@ impl Drop for PanicGuard {
1001
1001
///
1002
1002
/// # Memory Ordering
1003
1003
///
1004
- /// Calls to `park ` _synchronize-with_ calls to `unpark `, meaning that memory
1004
+ /// Calls to `unpark ` _synchronize-with_ calls to `park `, meaning that memory
1005
1005
/// operations performed before a call to `unpark` are made visible to the thread that
1006
1006
/// consumes the token and returns from `park`. Note that all `park` and `unpark`
1007
- /// operations for a given thread form a total order and `park` synchronizes-with
1008
- /// _all_ prior `unpark` operations .
1007
+ /// operations for a given thread form a total order and _all_ prior `unpark` operations
1008
+ /// synchronize-with `park` .
1009
1009
///
1010
1010
/// In atomic ordering terms, `unpark` performs a `Release` operation and `park`
1011
1011
/// performs the corresponding `Acquire` operation. Calls to `unpark` for the same
You can’t perform that action at this time.
0 commit comments