summaryrefslogtreecommitdiffstats
path: root/library/core/src/iter/sources/successors.rs
diff options
context:
space:
mode:
Diffstat (limited to 'library/core/src/iter/sources/successors.rs')
-rw-r--r--library/core/src/iter/sources/successors.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/iter/sources/successors.rs b/library/core/src/iter/sources/successors.rs
index 99f058a90..6a6cbe905 100644
--- a/library/core/src/iter/sources/successors.rs
+++ b/library/core/src/iter/sources/successors.rs
@@ -22,7 +22,7 @@ where
Successors { next: first, succ }
}
-/// An new iterator where each successive item is computed based on the preceding one.
+/// A new iterator where each successive item is computed based on the preceding one.
///
/// This `struct` is created by the [`iter::successors()`] function.
/// See its documentation for more.