From f6b43d5efcd1bf027dded7acce54a5710cee1a57 Mon Sep 17 00:00:00 2001 From: Ritvik Date: Tue, 22 Nov 2022 02:32:04 +0530 Subject: [PATCH] Replaced Invalid Link with the valid one (#301) --- docs/extractors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/extractors.md b/docs/extractors.md index 5abda12..7f3f021 100644 --- a/docs/extractors.md +++ b/docs/extractors.md @@ -6,7 +6,7 @@ import CodeBlock from "@site/src/components/code_block.js"; # Type-safe information extraction -Actix Web provides a facility for type-safe request information access called _extractors_ (i.e., `impl FromRequest`). There are lots of built-in extractor implementations (see [implementors](https://actix.rs/actix-web/actix_web/trait.FromRequest.html#implementors)). +Actix Web provides a facility for type-safe request information access called _extractors_ (i.e., `impl FromRequest`). There are lots of built-in extractor implementations (see [implementors](https://docs.rs/actix-web/latest/actix_web/trait.FromRequest.html#implementors)). An extractor can be accessed as an argument to a handler function. Actix Web supports up to 12 extractors per handler function. Argument position does not matter.