This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new 877195b791a Polished
877195b791a is described below
commit 877195b791a23ab137a5aa5e3259dfcb5d3c790b
Author: Claus Ibsen <[email protected]>
AuthorDate: Wed Jun 15 06:31:32 2022 +0200
Polished
---
docs/user-manual/modules/ROOT/pages/camel-jbang.adoc | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/docs/user-manual/modules/ROOT/pages/camel-jbang.adoc
b/docs/user-manual/modules/ROOT/pages/camel-jbang.adoc
index ee3cd5b57b7..5d10e16088f 100644
--- a/docs/user-manual/modules/ROOT/pages/camel-jbang.adoc
+++ b/docs/user-manual/modules/ROOT/pages/camel-jbang.adoc
@@ -31,7 +31,7 @@ You can specify which Camel version to run as shown:
[source,bash]
----
-jbang run -Dcamel.jbang.version=3.16.0 camel@apache/camel [command]
+jbang run -Dcamel.jbang.version=3.17.0 camel@apache/camel [command]
----
And you can also try bleeding edge development by using SNAPSHOT such as:
@@ -500,7 +500,6 @@ running on port 8080. For example the following route in a
file named `server.ya
[source,yaml]
----
-#!/usr/bin/env jbang camel@apache/camel run
- from:
uri: "platform-http:/hello"
steps:
@@ -519,7 +518,7 @@ And you can call the HTTP service with:
[source,bash]
----
-curl http://localhost:8080/hello
+$ curl http://localhost:8080/hello
Hello World%
----