This is an automated email from the ASF dual-hosted git repository. acosentino 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 be20918eee7 (chores) doc: add missing word in getting-started guide (#11540) be20918eee7 is described below commit be20918eee7b12d65a8b6506b57dd867e57d6fa5 Author: João Martins <joao.mart...@talkdesk.com> AuthorDate: Sat Sep 23 20:19:41 2023 +0100 (chores) doc: add missing word in getting-started guide (#11540) The part of the "Routes" section of the getting-started guide that reads "a predicate that tests if the body of the matches" seems to be missing the word "message" between "the body of the" and "matches". The purpose of this commit is to the add that word to that part of the guide in order to make it slightly clearer. --- docs/main/modules/getting-started/pages/index.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/main/modules/getting-started/pages/index.adoc b/docs/main/modules/getting-started/pages/index.adoc index 62b9d729db3..6962e368ffa 100644 --- a/docs/main/modules/getting-started/pages/index.adoc +++ b/docs/main/modules/getting-started/pages/index.adoc @@ -280,7 +280,7 @@ Camel usually exposes these patterns via a Java Domain-Specific Language (Java D // ... ---- -The code above implements the Content Based Router by evaluating (`when()`) a predicate that tests if the body of the matches an https://en.wikipedia.org/wiki/XPath[xpath] expression (`xpath("/person/city = 'London'")`). If `true`, then the destination endpoint for the message should be `file:target/messages/uk`. Otherwise, the destination endpoint should be `file:target/messages/others`. +The code above implements the Content Based Router by evaluating (`when()`) a predicate that tests if the body of the message matches an https://en.wikipedia.org/wiki/XPath[xpath] expression (`xpath("/person/city = 'London'")`). If `true`, then the destination endpoint for the message should be `file:target/messages/uk`. Otherwise, the destination endpoint should be `file:target/messages/others`. Camel supports most of the xref:components:eips:enterprise-integration-patterns.adoc[Enterprise Integration Patterns] from the excellent book by Gregor Hohpe and Bobby Woolf.