Skip to content

Commit a1c98e5

Browse files
authored
Merge pull request rust-lang#1012 from msbit/src-items-traits-typo
Fix typo in `Traits`
2 parents d23f9da + 20340ce commit a1c98e5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: 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)