We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a90ba7 commit 67c1e89Copy full SHA for 67c1e89
src/libcore/iter/mod.rs
@@ -72,9 +72,9 @@
72
//! # Implementing Iterator
73
//!
74
//! Creating an iterator of your own involves two steps: creating a `struct` to
75
-//! hold the iterator's state, and then `impl`ementing [`Iterator`] for that
76
-//! `struct`. This is why there are so many `struct`s in this module: there is
77
-//! one for each iterator and iterator adapter.
+//! hold the iterator's state, and then implementing [`Iterator`] for that `struct`.
+//! This is why there are so many `struct`s in this module: there is one for
+//! each iterator and iterator adapter.
78
79
//! Let's make an iterator named `Counter` which counts from `1` to `5`:
80
0 commit comments