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/09 06:16:46 UTC

(camel) branch main updated: Fix type acitvemq to activemq step-eip.adoc (#12701)

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 e22a87f9685 Fix type acitvemq to activemq step-eip.adoc (#12701)
e22a87f9685 is described below

commit e22a87f96853073cce610541e95d51ef46d82934
Author: Mitch Trachtenberg <mj...@gmail.com>
AuthorDate: Mon Jan 8 22:16:40 2024 -0800

    Fix type acitvemq to activemq step-eip.adoc (#12701)
---
 .../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")