From 162330d89fe297622f8467c479a443e08ebc942c Mon Sep 17 00:00:00 2001 From: Tshepang Lekhonkhobe Date: Wed, 17 Jun 2015 06:08:36 +0200 Subject: [PATCH] style: typo fix --- src/doc/style/features/traits/generics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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**: