Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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.
- Loading branch information