From 1914a5340350a11e69cb7922a50a3092ec1afa7d Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Mon, 6 May 2024 11:22:38 -0700 Subject: [PATCH] Fix markdown punctuation in documentation of ConcurrentStream::take --- src/concurrent_stream/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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