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 c5639d55953 CAMEL-20410: documentation fixes for pipeline eip (#13190)
c5639d55953 is described below

commit c5639d55953964a0c66178eb2b1a6b9cd17961a5
Author: t-burch <[email protected]>
AuthorDate: Mon Feb 19 14:03:44 2024 +0100

    CAMEL-20410: documentation fixes for pipeline eip (#13190)
    
    Fixed typos in route examples.
---
 .../src/main/docs/modules/eips/pages/pipeline-eip.adoc                | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/core/camel-core-engine/src/main/docs/modules/eips/pages/pipeline-eip.adoc 
b/core/camel-core-engine/src/main/docs/modules/eips/pages/pipeline-eip.adoc
index 07a644f183f..3e521c8b0c1 100644
--- a/core/camel-core-engine/src/main/docs/modules/eips/pages/pipeline-eip.adoc
+++ b/core/camel-core-engine/src/main/docs/modules/eips/pages/pipeline-eip.adoc
@@ -67,7 +67,7 @@ Java::
 from("activemq:SomeQueue")
     .to("bean:foo")
     .to("bean:bar")
-    .to("acitvemq:OutputQueueu");
+    .to("activemq:OutputQueue");
 ----
 
 XML::
@@ -113,7 +113,7 @@ from("activemq:SomeQueue")
         .pipeline()
             .to("bean:foo")
             .to("bean:bar")
-            .to("acitvemq:OutputQueueu")
+            .to("activemq:OutputQueue")
         .end()
     .end() // ends multicast
     .to("log:result");

Reply via email to