Skip to content

Commit 3223c88

Browse files
committed
Auto merge of #26367 - tshepang:patch-1, r=bluss
2 parents 997bd33 + 162330d commit 3223c88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doc/style/features/traits/generics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ yielding items of type `A` to produce a collection of `A`:
88
fn from_iter<T: Iterator<A>>(iterator: T) -> SomeCollection<A>
99
```
1010

11-
Here, the `Iterator` trait is specifies an interface that a type `T` must
11+
Here, the `Iterator` trait specifies an interface that a type `T` must
1212
explicitly implement to be used by this generic function.
1313

1414
**Pros**:

0 commit comments

Comments
 (0)