From defe1142df1a01f6862d7383532bd2920080e554 Mon Sep 17 00:00:00 2001 From: Ibraheem Ahmed Date: Wed, 31 Mar 2021 09:15:18 -0400 Subject: [PATCH] Bump extractor limit to 12 (#220) --- content/docs/extractors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/extractors.md b/content/docs/extractors.md index 9c852b9..36ce427 100644 --- a/content/docs/extractors.md +++ b/content/docs/extractors.md @@ -10,7 +10,7 @@ Actix-web provides a facility for type-safe request information access called *e (ie, `impl FromRequest`). By default, actix-web provides several extractor implementations. An extractor can be accessed as an argument to a handler function. Actix-web supports -up to 10 extractors per handler function. Argument position does not matter. +up to 12 extractors per handler function. Argument position does not matter. {{< include-example example="extractors" file="main.rs" section="option-one" >}}