Skip to content

Commit f0f53a4

Browse files
authored
doc: fix typo in tutorial
PR #201
1 parent e1578eb commit f0f53a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tutorial.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1221,7 +1221,7 @@ To understand the type signature, we can break it down piece by piece.
12211221
2. `self` is a special parameter that corresponds to the `Writer` itself.
12221222
3. `record` is the CSV record we'd like to write. Its type is `I`, which is
12231223
a generic type.
1224-
4. In the method's `where` clause, the `I` type is contrained by the
1224+
4. In the method's `where` clause, the `I` type is constrained by the
12251225
`IntoIterator<Item=T>` bound. What that means is that `I` must satisfy the
12261226
`IntoIterator` trait. If you look at the documentation of the
12271227
[`IntoIterator` trait](https://doc.rust-lang.org/std/iter/trait.IntoIterator.html),

0 commit comments

Comments
 (0)