fix: typo in actix extract documentation (#1043)

This commit is contained in:
Mark Catley 2023-05-16 00:57:49 +12:00 committed by GitHub
parent 059c1bf61c
commit b472aaf6a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1028,7 +1028,7 @@ where
}
}
/// A helper to make it easier to use Axum extractors in server functions. This takes
/// A helper to make it easier to use Actix extractors in server functions. This takes
/// a handler function as its argument. The handler follows similar rules to an Actix
/// [Handler](actix_web::Handler): it is an async function that receives arguments that
/// will be extracted from the request and returns some value.