1
0
mirror of https://github.com/actix/actix-website synced 2024-11-23 16:31:08 +01:00

fix lint error

This commit is contained in:
Rob Ede 2023-02-03 14:12:21 -05:00
parent ac29615601
commit 28b6c28381
No known key found for this signature in database
GPG Key ID: 97C636207D3EF933

View File

@ -74,7 +74,7 @@ A _variable part_ (replacement marker) is specified in the form _{identifier}_,
A replacement marker in a pattern matches the regular expression `[^{}/]+`.
A match*info is the `Params` object representing the dynamic parts extracted from a \_URL* based on the routing pattern. It is available as _request.match_info_. For example, the following pattern defines one literal segment (foo) and two replacement markers (baz, and bar):
A `match_info` is the `Params` object representing the dynamic parts extracted from a _URL_ based on the routing pattern. It is available as _request.match_info_. For example, the following pattern defines one literal segment (foo) and two replacement markers (baz, and bar):
```
foo/{baz}/{bar}