diff --git a/src/doc/style/features/traits/generics.md b/src/doc/style/features/traits/generics.md index ab4f9cb1579..371420431e7 100644 --- a/src/doc/style/features/traits/generics.md +++ b/src/doc/style/features/traits/generics.md @@ -8,7 +8,7 @@ yielding items of type `A` to produce a collection of `A`: fn from_iter>(iterator: T) -> SomeCollection ``` -Here, the `Iterator` trait is specifies an interface that a type `T` must +Here, the `Iterator` trait specifies an interface that a type `T` must explicitly implement to be used by this generic function. **Pros**: