Skip to content

Commit 0d821db

Browse files
authored
Replace if with if and only if in the definition dox of Sync
The old text was: "The precise definition is: a type T is Sync if &T is Send." Since we've also got ``` impl<'a, T> Send for &'a T where T: Sync + ?Sized, ``` I purpose we can change the `if` to `if and only if` to make it more precise.
1 parent fe5c45b commit 0d821db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcore/marker.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ pub trait Copy : Clone {
294294
/// This trait is automatically implemented when the compiler determines
295295
/// it's appropriate.
296296
///
297-
/// The precise definition is: a type `T` is `Sync` if `&T` is
297+
/// The precise definition is: a type `T` is `Sync` if and only if `&T` is
298298
/// [`Send`][send]. In other words, if there is no possibility of
299299
/// [undefined behavior][ub] (including data races) when passing
300300
/// `&T` references between threads.

0 commit comments

Comments
 (0)