We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d23f9da + 20340ce commit a1c98e5Copy full SHA for a1c98e5
src/items/traits.md
@@ -81,9 +81,9 @@ Object safe traits can be the base trait of a [trait object]. A trait is
81
* [`Rc<Self>`]
82
* [`Arc<Self>`]
83
* [`Pin<P>`] where `P` is one of the types above
84
- * Does not have a `where Self: Sized` bound (reciever type of `Self` (i.e. `self`) implies this).
+ * Does not have a `where Self: Sized` bound (receiver type of `Self` (i.e. `self`) implies this).
85
* Explicitly non-dispatchable functions require:
86
- * Have a `where Self: Sized` bound (reciever type of `Self` (i.e. `self`) implies this).
+ * Have a `where Self: Sized` bound (receiver type of `Self` (i.e. `self`) implies this).
87
88
```rust
89
# use std::rc::Rc;
0 commit comments