You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by on...@apache.org on 2019/10/01 21:06:46 UTC

[camel] branch master updated: fix typo

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

onders 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 7f31a54  fix typo
7f31a54 is described below

commit 7f31a54d8eb1658aea5f0e30f9a93f04f558a04c
Author: önder sezgin <on...@apache.org>
AuthorDate: Wed Oct 2 00:06:32 2019 +0300

    fix typo
---
 core/camel-core-engine/src/main/docs/eips/resequence-eip.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/camel-core-engine/src/main/docs/eips/resequence-eip.adoc b/core/camel-core-engine/src/main/docs/eips/resequence-eip.adoc
index 760f661..cd86b9d 100644
--- a/core/camel-core-engine/src/main/docs/eips/resequence-eip.adoc
+++ b/core/camel-core-engine/src/main/docs/eips/resequence-eip.adoc
@@ -65,7 +65,7 @@ Typically you'd use a header rather than the body to order things; or maybe a pa
 
 [source,java]
 ----
-resequencer(header("mySeqNo"))
+resequence(header("mySeqNo"))
 ----
 
 for example to reorder messages using a custom sequence number in the header `mySeqNo`. +