]> git.ipfire.org Git - thirdparty/starlette.git/commitdiff
Remove count of available convertors (#1409)
authorMng <50384638+Mng-dev-ai@users.noreply.github.com>
Thu, 13 Jan 2022 21:59:47 +0000 (23:59 +0200)
committerGitHub <noreply@github.com>
Thu, 13 Jan 2022 21:59:47 +0000 (22:59 +0100)
Co-authored-by: Micheal Gendy <micheal@sonono.ch>
docs/routing.md

index f0b672d8a226430987ea2ea5f1682b8560d22b51..8bdc6215bda0fc21b4fe408ad400bffc57cef101 100644 (file)
@@ -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.