Skip to content

Commit 20340ce

Browse files
committed
Fix typo in Traits
Change misspellings of `reciever` to `receiver`
1 parent d23f9da commit 20340ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/items/traits.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,9 @@ Object safe traits can be the base trait of a [trait object]. A trait is
8181
* [`Rc<Self>`]
8282
* [`Arc<Self>`]
8383
* [`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).
84+
* Does not have a `where Self: Sized` bound (receiver type of `Self` (i.e. `self`) implies this).
8585
* Explicitly non-dispatchable functions require:
86-
* Have a `where Self: Sized` bound (reciever type of `Self` (i.e. `self`) implies this).
86+
* Have a `where Self: Sized` bound (receiver type of `Self` (i.e. `self`) implies this).
8787

8888
```rust
8989
# use std::rc::Rc;

0 commit comments

Comments
 (0)