1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-08-31 08:57:00 +02:00

spelling check

This commit is contained in:
Alexander Andreev
2018-05-06 19:07:30 +03:00
parent a7c40024ce
commit cd11293c1f
11 changed files with 26 additions and 26 deletions

View File

@@ -104,7 +104,7 @@ impl<S: 'static> Route<S> {
self.handler = InnerHandler::async(handler);
}
/// Set handler function, use request extractor for paramters.
/// Set handler function, use request extractor for parameters.
///
/// ```rust
/// # extern crate bytes;
@@ -140,7 +140,7 @@ impl<S: 'static> Route<S> {
cfg
}
/// Set handler function, use request extractor for both paramters.
/// Set handler function, use request extractor for both parameters.
///
/// ```rust
/// # extern crate bytes;
@@ -189,7 +189,7 @@ impl<S: 'static> Route<S> {
(cfg1, cfg2)
}
/// Set handler function, use request extractor for all paramters.
/// Set handler function, use request extractor for all parameters.
pub fn with3<T1, T2, T3, F, R>(
&mut self, handler: F,
) -> (