From 591efc3bb093a091138011ebb8777730a14d8357 Mon Sep 17 00:00:00 2001 From: Flinner Date: Fri, 11 Feb 2022 19:34:58 +0300 Subject: [PATCH] minor fix to markdown :`*italic * -> *italic*` (#253) --- 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 12eba83..b90ebd0 100644 --- a/content/docs/url-dispatch.md +++ b/content/docs/url-dispatch.md @@ -270,7 +270,7 @@ path pattern. i.e. you can match path pattern `/{id}/{username}/` against {{< include-example example="url-dispatch" file="path.rs" section="path" >}} It also possible to extract path pattern information to a struct. In this case, -this struct must implement *serde's *`Deserialize` trait. +this struct must implement *serde's* `Deserialize` trait. {{< include-example example="url-dispatch" file="path2.rs" section="path" >}}