diff options
author | 2024-01-18 11:02:53 +0100 | |
---|---|---|
committer | 2024-01-18 11:02:53 +0100 | |
commit | cba56ea76821a3204923d34c3fe634730a86f22d (patch) | |
tree | 2d13baeb17dd50f8949b033421fbe90a44803b6c /futures | |
parent | 74a6e58cbc3354d45ed6cd86e58c624a946d0f05 (diff) | |
download | iced-cba56ea76821a3204923d34c3fe634730a86f22d.tar.gz iced-cba56ea76821a3204923d34c3fe634730a86f22d.tar.bz2 iced-cba56ea76821a3204923d34c3fe634730a86f22d.zip |
Fix typo `Send -> Sync`
Diffstat (limited to 'futures')
-rw-r--r-- | futures/src/maybe.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/futures/src/maybe.rs b/futures/src/maybe.rs index 1a0bd1d1..c564a739 100644 --- a/futures/src/maybe.rs +++ b/futures/src/maybe.rs @@ -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 {} |