From b472aaf6a01697c99f2db8c5794d13f7bc5b49b6 Mon Sep 17 00:00:00 2001 From: Mark Catley Date: Tue, 16 May 2023 00:57:49 +1200 Subject: [PATCH] fix: typo in actix extract documentation (#1043) --- integrations/actix/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integrations/actix/src/lib.rs b/integrations/actix/src/lib.rs index 4021cc45e..5d94b6d4a 100644 --- a/integrations/actix/src/lib.rs +++ b/integrations/actix/src/lib.rs @@ -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.