1
0
mirror of https://github.com/actix/actix-website synced 2024-11-24 00:41:07 +01:00

Bump extractor limit to 12 (#220)

This commit is contained in:
Ibraheem Ahmed 2021-03-31 09:15:18 -04:00 committed by GitHub
parent d148e3e437
commit defe1142df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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" >}}