summaryrefslogtreecommitdiff
path: root/src/stream_ext.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/stream_ext.rs')
-rw-r--r--src/stream_ext.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stream_ext.rs b/src/stream_ext.rs
index 51532ee..1157c9e 100644
--- a/src/stream_ext.rs
+++ b/src/stream_ext.rs
@@ -515,7 +515,7 @@ pub trait StreamExt: Stream {
/// Skip elements from the underlying stream while the provided predicate
/// resolves to `true`.
///
- /// This function, like [`Iterator::skip_while`], will ignore elemets from the
+ /// This function, like [`Iterator::skip_while`], will ignore elements from the
/// stream until the predicate `f` resolves to `false`. Once one element
/// returns false, the rest of the elements will be yielded.
///