Fix URI pattern example in webflux.adoc

Closes gh-25137
This commit is contained in:
limo520 2020-05-27 10:27:16 +08:00 committed by Sam Brannen
parent ae8d0d4a12
commit d6cab259c3
1 changed files with 1 additions and 1 deletions

View File

@ -1435,7 +1435,7 @@ and `+"/pages/t3st.html"+`
| `+{*path}+`
| Matches zero or more path segments until the end of the path and captures it as a variable named "path"
| `+"/resources/{*file}"+` matches `+"/resources/images/file.png"+` and captures `+file=resources/file.png+`
| `+"/resources/{*file}"+` matches `+"/resources/images/file.png"+` and captures `+file=/images/file.png+`
|===