You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2020/10/20 10:34:30 UTC

[camel] branch master updated: Regen for commit 613bd8026ad0443db7adf8a541c288d767e6376f

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

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new 9285634  Regen for commit 613bd8026ad0443db7adf8a541c288d767e6376f
9285634 is described below

commit 92856342dc673f44a72f763f440abd20057d4637
Author: aldettinger <al...@users.noreply.github.com>
AuthorDate: Tue Oct 20 10:31:25 2020 +0000

    Regen for commit 613bd8026ad0443db7adf8a541c288d767e6376f
    
    Signed-off-by: GitHub <no...@github.com>
---
 .../resources/org/apache/camel/catalog/docs/joor-language.adoc | 10 +++++-----
 docs/components/modules/languages/pages/joor-language.adoc     | 10 +++++-----
 2 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/joor-language.adoc b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/joor-language.adoc
index 2031f66..f03d480 100644
--- a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/joor-language.adoc
+++ b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/joor-language.adoc
@@ -9,7 +9,7 @@ include::{cq-version}@camel-quarkus:ROOT:partial$reference/languages/joor.adoc[]
 
 *Since Camel {since}*
 
-The jOOR langauge allows to use Java code in your Camel expression, with some limitations.
+The jOOR language allows to use Java code in your Camel expression, with some limitations.
 The jOOR library integrates with the Java compiler and performs runtime compilation of Java code.
 
 NOTE: Java 8 is not supported. Java 11 or 14 is required.
@@ -77,8 +77,8 @@ You can omit _.class_ to make the function a little bit smaller:
 var user = bodyAs(com.foo.MyUser);
 ----
 
-The type must a fully qualified class type, but that can be inconvenient to type all the time, so you can configure in
-the `camel-joor.properties` file an import for the type such as:
+The type must be a fully qualified class type, but that can be inconvenient to type all the time. In such a situation, you can configure an import
+in the `camel-joor.properties` file as shown below:
 
 [source,properties]
 ----
@@ -182,8 +182,8 @@ And in XML DSL:
 
 == Multi statements
 
-It is possible to include multiple statements, for example where we in the first statement gets the `user` header.
-And then in the 2nd statement we return a value whether the user is `null` or not.
+It is possible to include multiple statements. The code below shows an example where the `user` header is retrieved in a first statement.
+And then, in a second statement we return a value whether the user is `null` or not.
 
 [source,java]
 ----
diff --git a/docs/components/modules/languages/pages/joor-language.adoc b/docs/components/modules/languages/pages/joor-language.adoc
index d7b5790..441f32e 100644
--- a/docs/components/modules/languages/pages/joor-language.adoc
+++ b/docs/components/modules/languages/pages/joor-language.adoc
@@ -11,7 +11,7 @@ include::{cq-version}@camel-quarkus:ROOT:partial$reference/languages/joor.adoc[]
 
 *Since Camel {since}*
 
-The jOOR langauge allows to use Java code in your Camel expression, with some limitations.
+The jOOR language allows to use Java code in your Camel expression, with some limitations.
 The jOOR library integrates with the Java compiler and performs runtime compilation of Java code.
 
 NOTE: Java 8 is not supported. Java 11 or 14 is required.
@@ -79,8 +79,8 @@ You can omit _.class_ to make the function a little bit smaller:
 var user = bodyAs(com.foo.MyUser);
 ----
 
-The type must a fully qualified class type, but that can be inconvenient to type all the time, so you can configure in
-the `camel-joor.properties` file an import for the type such as:
+The type must be a fully qualified class type, but that can be inconvenient to type all the time. In such a situation, you can configure an import
+in the `camel-joor.properties` file as shown below:
 
 [source,properties]
 ----
@@ -184,8 +184,8 @@ And in XML DSL:
 
 == Multi statements
 
-It is possible to include multiple statements, for example where we in the first statement gets the `user` header.
-And then in the 2nd statement we return a value whether the user is `null` or not.
+It is possible to include multiple statements. The code below shows an example where the `user` header is retrieved in a first statement.
+And then, in a second statement we return a value whether the user is `null` or not.
 
 [source,java]
 ----