From 4a07430e8e43d0dc739ee0b32bd1d2ee7f1d5afe Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Wed, 21 Feb 2018 22:04:59 -0800 Subject: [PATCH] remove RegexSet mention --- guide/src/qs_5.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/guide/src/qs_5.md b/guide/src/qs_5.md index cd5037f85..c1e8b615c 100644 --- a/guide/src/qs_5.md +++ b/guide/src/qs_5.md @@ -1,9 +1,7 @@ # URL Dispatch URL dispatch provides a simple way to map URLs to `Handler` code using a simple pattern matching -language. *Regex* crate and it's -[*RegexSet*](https://doc.rust-lang.org/regex/regex/struct.RegexSet.html) is being used for -pattern matching. If one of the patterns matches the path information associated with a request, +language. If one of the patterns matches the path information associated with a request, a particular handler object is invoked. A handler is a specific object that implements `Handler` trait, defined in your application, that receives the request and returns a response object. More information is available in [handler section](../qs_4.html).