Skip to content

Commit

Permalink
Fix markdown punctuation in documentation of ConcurrentStream::take
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed May 6, 2024
1 parent 1eb7a23 commit 1914a53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/concurrent_stream/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<Self>
where
Expand Down

0 comments on commit 1914a53

Please sign in to comment.