This is an automated email from the ASF dual-hosted git repository.
acosentino pushed a commit to branch camel-4.4.x
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/camel-4.4.x by this push:
new dad004ad82d CAMEL-20410: documentation fixes for pipeline eip (#13190)
dad004ad82d is described below
commit dad004ad82d0df4779961227469102e712cdedbd
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");