You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2023/04/18 16:50:52 UTC

[camel] branch main updated: Fix Javadoc grammar (#9894)

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 2f8b83cb3cb Fix Javadoc grammar (#9894)
2f8b83cb3cb is described below

commit 2f8b83cb3cb26c6d48cd82d0a8e5397c6edbfc26
Author: Aneta Čadová <49...@users.noreply.github.com>
AuthorDate: Tue Apr 18 18:50:43 2023 +0200

    Fix Javadoc grammar (#9894)
---
 .../src/main/java/org/apache/camel/language/jq/JqExpression.java  | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/components/camel-jq/src/main/java/org/apache/camel/language/jq/JqExpression.java b/components/camel-jq/src/main/java/org/apache/camel/language/jq/JqExpression.java
index 753a6959ed9..b11611330c6 100644
--- a/components/camel-jq/src/main/java/org/apache/camel/language/jq/JqExpression.java
+++ b/components/camel-jq/src/main/java/org/apache/camel/language/jq/JqExpression.java
@@ -128,9 +128,9 @@ public class JqExpression extends ExpressionAdapter implements ExpressionResultT
     }
 
     /**
-     * Name of header to use as input, instead of the message body
+     * Name of the header to use as input instead of the message body.
      * </p>
-     * It has as higher precedent than the propertyName if both are set.
+     * It has higher precedence than the propertyName if both are set.
      */
     public void setHeaderName(String headerName) {
         this.headerName = headerName;
@@ -141,9 +141,9 @@ public class JqExpression extends ExpressionAdapter implements ExpressionResultT
     }
 
     /**
-     * Name of property to use as input, instead of the message body.
+     * Name of the property to use as input instead of the message body.
      * </p>
-     * It has a lower precedent than the headerName if both are set.
+     * It has lower precedence than the headerName if both are set.
      */
     public void setPropertyName(String propertyName) {
         this.propertyName = propertyName;