You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2024/01/08 16:42:27 UTC

(camel) branch camel-4.0.x updated: Update step-eip.adoc (#12700)

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

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


The following commit(s) were added to refs/heads/camel-4.0.x by this push:
     new 7f642249cfa Update step-eip.adoc (#12700)
7f642249cfa is described below

commit 7f642249cfa95f93133888628fdd1502daa3beb9
Author: Mitch Trachtenberg <mj...@gmail.com>
AuthorDate: Mon Jan 8 08:42:21 2024 -0800

    Update step-eip.adoc (#12700)
    
    typo acitvemq to activemq
---
 .../src/main/docs/modules/eips/pages/step-eip.adoc                  | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/core/camel-core-engine/src/main/docs/modules/eips/pages/step-eip.adoc b/core/camel-core-engine/src/main/docs/modules/eips/pages/step-eip.adoc
index 3de350f8c24..76525fdcd33 100644
--- a/core/camel-core-engine/src/main/docs/modules/eips/pages/step-eip.adoc
+++ b/core/camel-core-engine/src/main/docs/modules/eips/pages/step-eip.adoc
@@ -44,12 +44,12 @@ In Java, you use `step` to group together sub nodes as shown:
 from("activemq:SomeQueue")
     .step("foo")
       .bean("foo")
-      .to("acitvemq:OutputQueue")
+      .to("activemq:OutputQueue")
     .end()
     .to("direct:bar");
 ----
 
-As you can see this groups together `.bean("foo")` and `.to("acitvemq:OutputQueue")`
+As you can see this groups together `.bean("foo")` and `.to("activemq:OutputQueue")`
 into a logical unit with the name foo.
 
 In XML you use the `<step>` tag:
@@ -77,7 +77,7 @@ Java::
 from("activemq:SomeQueue")
     .step("foo")
       .bean("foo")
-      .to("acitvemq:OutputQueue")
+      .to("activemq:OutputQueue")
     .end()
     .step("bar")
       .bean("something")