Skip to content

Commit

Permalink
Remove redundant trait bound
Browse files Browse the repository at this point in the history
Co-authored-by: Timo <timo.glane@gmail.com>
  • Loading branch information
tysen and tglane authored Mar 4, 2025
1 parent d561cd1 commit f62cb03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tokio-util/src/sync/cancellation_token.rs
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ impl CancellationToken {

// ===== impl RunUntilCancelledFuture =====

impl<C, F: Future> Future for RunUntilCancelledFuture<C, F>
impl<C, F> Future for RunUntilCancelledFuture<C, F>
where
C: Future<Output = ()>,
F: Future,
Expand Down

0 comments on commit f62cb03

Please sign in to comment.