From 28b6c2838120b55519bd4f3cdfa7f670f9973dc1 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Fri, 3 Feb 2023 14:12:21 -0500 Subject: [PATCH] fix lint error --- docs/url-dispatch.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/url-dispatch.md b/docs/url-dispatch.md index eca6c2a..335c890 100644 --- a/docs/url-dispatch.md +++ b/docs/url-dispatch.md @@ -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}