From d6cab259c31316e34c79eb871277c8e79e4bc126 Mon Sep 17 00:00:00 2001 From: limo520 Date: Wed, 27 May 2020 10:27:16 +0800 Subject: [PATCH] Fix URI pattern example in webflux.adoc Closes gh-25137 --- src/docs/asciidoc/web/webflux.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/asciidoc/web/webflux.adoc b/src/docs/asciidoc/web/webflux.adoc index b8e8e9be02c..765bf2c5509 100644 --- a/src/docs/asciidoc/web/webflux.adoc +++ b/src/docs/asciidoc/web/webflux.adoc @@ -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+` |===