2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-03-03 16:49:42 +00:00

Merge pull request #944 from jackinloadup/patch-1

Fix typo in DoubleEndedStream docs
This commit is contained in:
Yoshua Wuyts 2021-01-25 12:11:18 +01:00 committed by GitHub
commit a4fb173352
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -152,7 +152,7 @@ pub trait DoubleEndedStream: Stream {
}
#[doc = r#"
Returns the the frist element from the right that matches the predicate.
Returns the first element from the right that matches the predicate.
# Examples