From a8788507e8c0deaa9d66e5bff8718922f1ef9fb6 Mon Sep 17 00:00:00 2001 From: Yuki Ishikawa Date: Mon, 28 May 2018 12:36:30 +0900 Subject: [PATCH] Fix typo --- content/docs/url-dispatch.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/url-dispatch.md b/content/docs/url-dispatch.md index a391b7c..b69a7a7 100644 --- a/content/docs/url-dispatch.md +++ b/content/docs/url-dispatch.md @@ -314,7 +314,7 @@ Actix provides functionality for type safe path information extraction. could be defined in several different forms. Simplest approach is to use `tuple` type. Each element in tuple must correpond to one element from path pattern. i.e. you can match path pattern `/{id}/{username}/` against -`Pyth<(u32, String)>` type, but `Path<(String, String, String)>` type will +`Path<(u32, String)>` type, but `Path<(String, String, String)>` type will always fail. {{< include-example example="url-dispatch" file="path.rs" section="path" >}}