diff --git a/vertx-core/src/main/java/io/vertx/core/http/HttpClientRequest.java b/vertx-core/src/main/java/io/vertx/core/http/HttpClientRequest.java index 4387a9a6795..5b955e233d0 100644 --- a/vertx-core/src/main/java/io/vertx/core/http/HttpClientRequest.java +++ b/vertx-core/src/main/java/io/vertx/core/http/HttpClientRequest.java @@ -65,11 +65,16 @@ public interface HttpClientRequest extends WriteStream { HttpClientRequest drainHandler(Handler handler); /** - * Override the request authority, when using HTTP/1.x this overrides the request {@code host} header, when using - * HTTP/2 this sets the {@code authority} pseudo header. When the port is a negative value, the default - * scheme port will be used. + * Override the request authority initially set by the client. * - *

The default request authority is the server host and port when connecting to the server. + *