You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by al...@apache.org on 2023/03/15 16:12:23 UTC

[camel] branch camel-3.20.x updated: vertx-http: fix documentation

This is an automated email from the ASF dual-hosted git repository.

aldettinger pushed a commit to branch camel-3.20.x
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/camel-3.20.x by this push:
     new ec3561ace8b vertx-http: fix documentation
ec3561ace8b is described below

commit ec3561ace8b05d77a5963890bc706008c743a510
Author: aldettinger <al...@gmail.com>
AuthorDate: Wed Mar 15 13:47:10 2023 +0100

    vertx-http: fix documentation
---
 .../camel-vertx-http/src/main/docs/vertx-http-component.adoc        | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/components/camel-vertx/camel-vertx-http/src/main/docs/vertx-http-component.adoc b/components/camel-vertx/camel-vertx-http/src/main/docs/vertx-http-component.adoc
index 5a9ba99ea9a..a8fc8022e05 100644
--- a/components/camel-vertx/camel-vertx-http/src/main/docs/vertx-http-component.adoc
+++ b/components/camel-vertx/camel-vertx-http/src/main/docs/vertx-http-component.adoc
@@ -13,7 +13,7 @@
 
 *{component-header}*
 
-The http://vertx.io/[Vert.x] HTTP component provides the capability to produce messages to HTTP endpoints via the https://vertx.io/docs/vertx-web-client/java/[Vert.x Web Client].
+The https://vertx.io/[Vert.x] HTTP component provides the capability to produce messages to HTTP endpoints via the https://vertx.io/docs/vertx-web-client/java/[Vert.x Web Client].
 
 Maven users will need to add the following dependency to their `pom.xml`
 for this component:
@@ -133,7 +133,7 @@ WebClientOptions options = new WebClientOptions().setMaxRedirects(5)
     .setIdleTimeout(10)
     .setConnectTimeout(3);
 
-camelContext.getRegistry.bind("clinetOptions", options);
+camelContext.getRegistry.bind("clientOptions", options);
 ---------------------------
 
 Then reference the options on the `vertx-http` producer.
@@ -141,7 +141,7 @@ Then reference the options on the `vertx-http` producer.
 [source,java]
 ---------------------------
 from("direct:start")
-    .to("vertx-http:http://localhost:8080?webClientOptions=#options")
+    .to("vertx-http:http://localhost:8080?webClientOptions=#clientOptions")
 ---------------------------
 
 == SSL