diff --git a/src/items/traits.md b/src/items/traits.md index e5f766f5f..a4b68815b 100644 --- a/src/items/traits.md +++ b/src/items/traits.md @@ -81,9 +81,9 @@ Object safe traits can be the base trait of a [trait object]. A trait is * [`Rc`] * [`Arc`] * [`Pin

`] where `P` is one of the types above - * 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). * Explicitly non-dispatchable functions require: - * 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). ```rust # use std::rc::Rc;