Fix typo Send -> Sync

This commit is contained in:
Héctor Ramón Jiménez 2024-01-18 11:02:53 +01:00
parent 74a6e58cbc
commit cba56ea768
No known key found for this signature in database
GPG key ID: 7CC46565708259A7

View file

@ -24,7 +24,7 @@ mod platform {
impl<T> MaybeSend for T {}
/// An extension trait that enforces `Send` only on native platforms.
/// An extension trait that enforces `Sync` only on native platforms.
///
/// Useful to write cross-platform async code!
pub trait MaybeSync {}