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 c23b5f5005f Fixed typo in Java example (#17846)
c23b5f5005f is described below
commit c23b5f5005f7dc768a0242ff80720191a7916596
Author: Tony Mitchell <[email protected]>
AuthorDate: Wed Apr 23 09:14:56 2025 -0700
Fixed typo in Java example (#17846)
---
.../src/main/docs/modules/eips/pages/pipeline-eip.adoc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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 30b0edcdb1f..d662f4a0d3e 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
@@ -43,7 +43,7 @@ from("activemq:cheese")
.pipeline()
.to("bean:foo")
.to("bean:bar")
- .to("acitvemq:wine");
+ .to("activemq:wine");
----
XML::