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 50441d2164c Polished 50441d2164c is described below commit 50441d2164c04eda01b7e5c68b037b886129beb4 Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Fri Aug 22 18:44:38 2025 +0200 Polished --- components/camel-jq/src/main/docs/jq-language.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/camel-jq/src/main/docs/jq-language.adoc b/components/camel-jq/src/main/docs/jq-language.adoc index 77d7fd5eb02..3a22dccdf75 100644 --- a/components/camel-jq/src/main/docs/jq-language.adoc +++ b/components/camel-jq/src/main/docs/jq-language.adoc @@ -140,9 +140,9 @@ For example, you can use JQ in a xref:manual::predicate.adoc[Predicate] with the ---- from("queue:books.new") .choice() - .when().jq(".store.book.price < 10)") + .when().jq(".store.book.price < 10") .to("jms:queue:book.cheap") - .when().jq(".store.book.price < 30)") + .when().jq(".store.book.price < 30") .to("jms:queue:book.average") .otherwise() .to("jms:queue:book.expensive");