Skip to content

Commit

Permalink
fix clippy in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshuawuyts committed Oct 24, 2024
1 parent 9de4079 commit f5e0c84
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/future/future_group.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ use crate::utils::{PollState, PollVec, WakerVec};
/// assert_eq!(out, 10);
/// # });}
/// ```
#[must_use = "`FutureGroup` does nothing if not iterated over"]
#[pin_project::pin_project]
pub struct FutureGroup<F> {
Expand Down
2 changes: 1 addition & 1 deletion src/stream/stream_group.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ use crate::utils::{PollState, PollVec, WakerVec};
/// # futures_lite::future::block_on(async {
/// let mut group = StreamGroup::new();
/// group.insert(stream::once(4));
///
/// let mut index = 3;
/// let mut out = 0;
/// let mut group = group.lend_mut();
Expand Down

0 comments on commit f5e0c84

Please sign in to comment.