Skip to content

Commit bf9099e

Browse files
authored
Merge pull request #168 from taiki-e/typo
Fix typos
2 parents 4811cb0 + 8906d82 commit bf9099e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

+1-1
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

+1-1
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)