Compare commits

...

2 Commits

Author SHA1 Message Date
Sebastian Ziebell f8bedd5881
Merge 358bf04b32 into cede0c6dbb 2025-03-10 14:54:03 -07:00
Sebastian Ziebell 358bf04b32
Fix order of template arguments in doc 2025-02-05 16:14:36 +01:00
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ use crate::{
/// This is the source code for the 2-parameter implementation of `Handler` to help illustrate the
/// bounds of the handler call after argument extraction:
/// ```ignore
/// impl<Func, Arg1, Arg2, Fut> Handler<(Arg1, Arg2)> for Func
/// impl<Func, Fut, Arg1, Arg2> Handler<(Arg1, Arg2)> for Func
/// where
/// Func: Fn(Arg1, Arg2) -> Fut + Clone + 'static,
/// Fut: Future,