diff --git a/src/concurrent_stream/mod.rs b/src/concurrent_stream/mod.rs index 46de45b..c599fac 100644 --- a/src/concurrent_stream/mod.rs +++ b/src/concurrent_stream/mod.rs @@ -133,7 +133,7 @@ pub trait ConcurrentStream { Limit::new(self, limit) } - /// Creates a stream that yields the first `n`` elements, or fewer if the + /// Creates a stream that yields the first `n` elements, or fewer if the /// underlying iterator ends sooner. fn take(self, limit: usize) -> Take where