You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 31, 2023. It is now read-only.
Regular expression applied: r"[^/].*?") Cast type: str Example matches:
/path/to/hello
/path/to/hello.txt
/path/to/hello/world.txt
The supplied regular expression does not match the examples:
Thus, the first phrase should be changed to:
Regular expression applied: r"[^/].*")
Writing this issue so I won't forget about it and hoping someone fixes this before I manage to.
The text was updated successfully, but these errors were encountered:
pdmtt
changed the title
en/guide/basics/routing.md: "regular expression applied" to path parameter of type "path" is incorrect
[en/guide/basics/routing.md] "Regular expression applied" to path parameter of type path is incorrect
Oct 18, 2023
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Nowadays, the
path
type in theSupported types
section of theRouting
page of the Guide Basics reads as:Regular expression applied:
r"[^/].*?")
Cast type:
str
Example matches:
/path/to/hello
/path/to/hello.txt
/path/to/hello/world.txt
The supplied regular expression does not match the examples:
Thus, the first phrase should be changed to:
Regular expression applied:
r"[^/].*")
Writing this issue so I won't forget about it and hoping someone fixes this before I manage to.
The text was updated successfully, but these errors were encountered: