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

minor fix to markdown :*italic * -> *italic* (#253)

This commit is contained in:
Flinner 2022-02-11 19:34:58 +03:00 committed by GitHub
parent 92c38666a0
commit 591efc3bb0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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