2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-05-23 15:31:29 +00:00

Fix typo in DoubleEndedStream docs

This commit is contained in:
Lucas Riutzel 2021-01-24 21:18:14 +00:00 committed by GitHub
parent af66efe540
commit e11a7ecf36
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