Fix typos found by crate-ci/typos

This commit is contained in:
Jonas Platte
2023-08-08 11:27:45 +02:00
parent ff3884aa41
commit 34d1fbc052
12 changed files with 13 additions and 13 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ pub trait HandlerCallWithExtractors<T, S>: Sized {
/// Call the handler with the extracted inputs.
fn call(self, extractors: T, state: S) -> <Self as HandlerCallWithExtractors<T, S>>::Future;
/// Conver this `HandlerCallWithExtractors` into [`Handler`].
/// Convert this `HandlerCallWithExtractors` into [`Handler`].
fn into_handler(self) -> IntoHandler<Self, T, S> {
IntoHandler {
handler: self,