From 3e5b6c4c532cb08d5c5abcff6eb96d12bd0c6638 Mon Sep 17 00:00:00 2001 From: ShivamPansuriya Date: Mon, 15 Apr 2024 13:12:42 +0530 Subject: [PATCH 1/2] Fixed docs of vertx-web Changes in vertx-web/src/main/asciidoc/index.adoc @line-250,251 --- vertx-web/src/main/asciidoc/index.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vertx-web/src/main/asciidoc/index.adoc b/vertx-web/src/main/asciidoc/index.adoc index 721853fe11..04d635c453 100644 --- a/vertx-web/src/main/asciidoc/index.adoc +++ b/vertx-web/src/main/asciidoc/index.adoc @@ -247,8 +247,8 @@ Note, if you need to process multipart form data from a blocking handler, you MU A route can be set-up to match the path from the request URI. In this case it will match any request which has a path that's the same as the specified path. -In the following example the handler will be called for a request `/some/path/`. We also ignore trailing slashes -so it will be called for paths `/some/path` and `/some/path//` too: +In the following example the handler will be called for a request `/some/path`. We also ignore trailing slashes +so it will be called for paths `/some/path/` and `/some/path//` too: [source,$lang] ---- From 3bcb9a5053c3c016a03cde87c0bb8ab10cba2d84 Mon Sep 17 00:00:00 2001 From: ShivamPansuriya Date: Mon, 15 Apr 2024 16:28:53 +0530 Subject: [PATCH 2/2] Fixed docs of vertx-web Signed-off-by: ShivamPansuriya --- vertx-web/src/main/asciidoc/index.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vertx-web/src/main/asciidoc/index.adoc b/vertx-web/src/main/asciidoc/index.adoc index 04d635c453..7899db1e3c 100644 --- a/vertx-web/src/main/asciidoc/index.adoc +++ b/vertx-web/src/main/asciidoc/index.adoc @@ -247,8 +247,8 @@ Note, if you need to process multipart form data from a blocking handler, you MU A route can be set-up to match the path from the request URI. In this case it will match any request which has a path that's the same as the specified path. -In the following example the handler will be called for a request `/some/path`. We also ignore trailing slashes -so it will be called for paths `/some/path/` and `/some/path//` too: +In the following example the handler will be called for a request `/some/path/`. We also ignore trailing slashes +so it will be called for paths `/some/path/` and `/some/path//` too but not for `/some/path`: [source,$lang] ----