Skip to content

Commit f5e0c84

Browse files
committed
fix clippy in CI
1 parent 9de4079 commit f5e0c84

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/future/future_group.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ use crate::utils::{PollState, PollVec, WakerVec};
5757
/// assert_eq!(out, 10);
5858
/// # });}
5959
/// ```
60-
6160
#[must_use = "`FutureGroup` does nothing if not iterated over"]
6261
#[pin_project::pin_project]
6362
pub struct FutureGroup<F> {

src/stream/stream_group.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ use crate::utils::{PollState, PollVec, WakerVec};
4242
/// # futures_lite::future::block_on(async {
4343
/// let mut group = StreamGroup::new();
4444
/// group.insert(stream::once(4));
45-
45+
///
4646
/// let mut index = 3;
4747
/// let mut out = 0;
4848
/// let mut group = group.lend_mut();

0 commit comments

Comments
 (0)