File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -217,7 +217,7 @@ error: the trait `Test` cannot be made into an object
217
217
For traits that need to be object safe and need to have default implementations
218
218
for some async methods, there are two resolutions. Either you can add Send
219
219
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 )
221
221
to constrain all implementors of the trait such that the default implementations
222
222
are applicable to them:
223
223
Original file line number Diff line number Diff line change 259
259
//! implementations for some async methods, there are two resolutions. Either
260
260
//! you can add Send and/or Sync as supertraits (Send if there are `&mut self`
261
261
//! 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
263
263
//! the default implementations are applicable to them:
264
264
//!
265
265
//! ```
You can’t perform that action at this time.
0 commit comments