This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 00f763cfbfd20a24e568972f7b94c05dcc2c7ba8
Author: Andrea Cosentino <anco...@gmail.com>
AuthorDate: Tue Mar 6 13:52:14 2018 +0100

    Minor fix on Pipeline EIP docs
---
 camel-core/src/main/docs/eips/pipeline-eip.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/camel-core/src/main/docs/eips/pipeline-eip.adoc 
b/camel-core/src/main/docs/eips/pipeline-eip.adoc
index 4f9e01c..3f9c4f7 100644
--- a/camel-core/src/main/docs/eips/pipeline-eip.adoc
+++ b/camel-core/src/main/docs/eips/pipeline-eip.adoc
@@ -35,7 +35,7 @@ from("activemq:SomeQueue")
     .pipeline()
     .bean("foo")
     .bean("bar")
-    .to("acitvemq:OutputQueueu");
+    .to("acitvemq:OutputQueue");
 ----
 
 The pipeline is the default mode, which can be omitted, and therefore you 
almost often write as:
@@ -45,7 +45,7 @@ The pipeline is the default mode, which can be omitted, and 
therefore you almost
 from("activemq:SomeQueue")
     .bean("foo")
     .bean("bar")
-    .to("acitvemq:OutputQueueu");
+    .to("acitvemq:OutputQueue");
 ----
 
 In XML you can use the `<pipeline>` element

-- 
To stop receiving notification emails like this one, please contact
acosent...@apache.org.

Reply via email to