diff --git a/docs/routing.md b/docs/routing.md index f0b672d8a..8bdc6215b 100644 --- a/docs/routing.md +++ b/docs/routing.md @@ -39,7 +39,7 @@ Route('/users/{username}', user) ``` By default this will capture characters up to the end of the path or the next `/`. -You can use convertors to modify what is captured. Four convertors are available: +You can use convertors to modify what is captured. The available convertors are: * `str` returns a string, and is the default. * `int` returns a Python integer.