We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c4604d commit eb081b1Copy full SHA for eb081b1
src/stream/mod.rs
@@ -156,7 +156,7 @@
156
//!
157
//! # while let Loops and IntoStream
158
159
-//! Rust's `while let` loop syntax is actually sugar for streams. Here's a basic
+//! Rust's `while let` loop syntax is an idiomatic way to iterate over streams. Here's a basic
160
//! example of `while let`:
161
162
//! ```
@@ -191,7 +191,7 @@
191
//! # Adapters
192
193
//! Functions which take an [`Stream`] and return another [`Stream`] are
194
-//! often called 'stream adapters', as they're a form of the 'adapter
+//! often called 'stream adapters', as they are a form of the 'adapter
195
//! pattern'.
196
197
//! Common stream adapters include [`map`], [`take`], and [`filter`].
0 commit comments