Skip to content

Commit 8906d82

Browse files
committed
Fix typos
1 parent 4811cb0 commit 8906d82

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ error: the trait `Test` cannot be made into an object
217217
For traits that need to be object safe and need to have default implementations
218218
for some async methods, there are two resolutions. Either you can add Send
219219
and/or Sync as supertraits (Send if there are `&mut self` methods with default
220-
implementations, Sync if there are `&self` methods with default implementions)
220+
implementations, Sync if there are `&self` methods with default implementations)
221221
to constrain all implementors of the trait such that the default implementations
222222
are applicable to them:
223223

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@
259259
//! implementations for some async methods, there are two resolutions. Either
260260
//! you can add Send and/or Sync as supertraits (Send if there are `&mut self`
261261
//! methods with default implementations, Sync if there are `&self` methods with
262-
//! default implementions) to constrain all implementors of the trait such that
262+
//! default implementations) to constrain all implementors of the trait such that
263263
//! the default implementations are applicable to them:
264264
//!
265265
//! ```

0 commit comments

Comments
 (0)