1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2025-04-16 06:44:05 +00:00

Fix order of template arguments in doc

This commit is contained in:
Sebastian Ziebell 2025-02-05 16:14:36 +01:00
parent 182055bcb5
commit 358bf04b32
No known key found for this signature in database
GPG key ID: 408A57A2FB0F3B98

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,