Skip to content

Commit

Permalink
Minor grammar fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Xaeroxe committed Nov 13, 2020
1 parent 53c7caa commit d3d9c53
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion futures-macro/src/stream_select.rs
Expand Up @@ -37,4 +37,4 @@ pub(crate) fn stream_select(input: TokenStream) -> TokenStream {
StreamSelect(#args)
}
})
}
}
2 changes: 1 addition & 1 deletion futures-util/src/async_await/stream_select_mod.rs
Expand Up @@ -7,7 +7,7 @@ use proc_macro_hack::proc_macro_hack;
#[proc_macro_hack(support_nested, only_hack_old_rustc)]
pub use futures_macro::stream_select_internal;

/// Combines several streams, all producing the same `Item` type, into one stream
/// Combines several streams, all producing the same `Item` type, into one stream.a
/// This is similar to `select_all` but does not require the streams to all be the same type.
/// It also keeps the streams inline, and does not require `Box<dyn Stream>`s to be allocated.
/// Streams passed to this macro must be `Unpin` and implement `FusedStream`.
Expand Down

0 comments on commit d3d9c53

Please sign in to comment.