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
The following commit(s) were added to refs/heads/master by this push: new 1186393 Fix "unmarshal" at camel-base64 docs (#2519) 1186393 is described below commit 118639321cfa2de777fc8a09f91cb64731516e1f Author: Denis Istomin <istomin....@gmail.com> AuthorDate: Wed Sep 12 20:20:10 2018 +0500 Fix "unmarshal" at camel-base64 docs (#2519) --- components/camel-base64/src/main/docs/base64-dataformat.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/camel-base64/src/main/docs/base64-dataformat.adoc b/components/camel-base64/src/main/docs/base64-dataformat.adoc index bfc2c42..0d6d15d 100644 --- a/components/camel-base64/src/main/docs/base64-dataformat.adoc +++ b/components/camel-base64/src/main/docs/base64-dataformat.adoc @@ -109,9 +109,9 @@ In Spring DSL: [source,xml] ---- <from uri="jms://queue/order"> - <marshal> + <unmarshal> <base64/> - </marshal> + </unmarshal> <to uri="bean:newOrder"/> ----