From e11a7ecf3626c4c7bc4efda08e325e95ea4bd788 Mon Sep 17 00:00:00 2001 From: Lucas Riutzel Date: Sun, 24 Jan 2021 21:18:14 +0000 Subject: [PATCH] Fix typo in DoubleEndedStream docs --- src/stream/double_ended_stream/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stream/double_ended_stream/mod.rs b/src/stream/double_ended_stream/mod.rs index a177865b..0cd70541 100644 --- a/src/stream/double_ended_stream/mod.rs +++ b/src/stream/double_ended_stream/mod.rs @@ -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