typo in documentation #nolog

This commit is contained in:
Miguel Grinberg
2023-12-26 17:07:07 +00:00
parent ad368be993
commit 2a3c889717

View File

@@ -297,7 +297,7 @@ match and the route will not be called.
A special type ``path`` can be used to capture the remainder of the path as a
single argument. The difference between an argument of type ``path`` and one of
type ``string`` is that the latter stops capturing when a ``/`` appears in the
URL.
URL::
@app.get('/tests/<path:path>')
async def get_test(request, path):