diff --git a/extensions/resteasy-classic/resteasy-server-common/deployment/src/main/java/io/quarkus/resteasy/server/common/deployment/ResteasyServerCommonProcessor.java b/extensions/resteasy-classic/resteasy-server-common/deployment/src/main/java/io/quarkus/resteasy/server/common/deployment/ResteasyServerCommonProcessor.java
index cf6a1ffebddd17..0fb0eac20350fb 100755
--- a/extensions/resteasy-classic/resteasy-server-common/deployment/src/main/java/io/quarkus/resteasy/server/common/deployment/ResteasyServerCommonProcessor.java
+++ b/extensions/resteasy-classic/resteasy-server-common/deployment/src/main/java/io/quarkus/resteasy/server/common/deployment/ResteasyServerCommonProcessor.java
@@ -137,7 +137,12 @@ static final class ResteasyConfig {
/**
* Set this to override the default path for JAX-RS resources if there are no
- * annotated application classes.
+ * annotated application classes. This path is specified with a leading {@literal /}, but is resolved relative
+ * to {@literal quarkus.http.root-path}.
+ *
+ * - If {@literal quarkus.http.root-path=/} and {@code quarkus.resteasy.path=/bar}, the JAX-RS resource path will be {@literal /bar}
+ * - If {@literal quarkus.http.root-path=/bar} and {@code quarkus.resteasy.path=/bar}, the JAX-RS resource path will be {@literal /foo/bar}
+ *
*/
@ConfigItem(defaultValue = "/")
@ConvertWith(NormalizeRootHttpPathConverter.class)
diff --git a/extensions/vertx-http/deployment/src/main/java/io/quarkus/vertx/http/deployment/HttpRootPathBuildItem.java b/extensions/vertx-http/deployment/src/main/java/io/quarkus/vertx/http/deployment/HttpRootPathBuildItem.java
index 11f0690f7b6f01..40afedb5e3c4cf 100644
--- a/extensions/vertx-http/deployment/src/main/java/io/quarkus/vertx/http/deployment/HttpRootPathBuildItem.java
+++ b/extensions/vertx-http/deployment/src/main/java/io/quarkus/vertx/http/deployment/HttpRootPathBuildItem.java
@@ -73,13 +73,13 @@ public String resolvePath(String path) {
*
* Given {@literal quarkus.http.root-path=/}
*
- * - {@code resolvePath("foo")} will return {@literal /foo}
- * - {@code resolvePath("/foo")} will return {@literal /foo}
+ * - {@code relativePath("foo")} will return {@literal /foo}
+ * - {@code relativePath("/foo")} will return {@literal /foo}
*
* Given {@literal quarkus.http.root-path=/app}
*
- * - {@code resolvePath("foo")} will return {@literal /app/foo}
- * - {@code resolvePath("/foo")} will return {@literal /app/foo}
+ * - {@code relativePath("foo")} will return {@literal /app/foo}
+ * - {@code relativePath("/foo")} will return {@literal /app/foo}
*
*
* The returned path will not end with a slash.