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 2021/11/12 16:38:12 UTC

[camel] branch main updated: Correct typos

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 b51e7a1  Correct typos
b51e7a1 is described below

commit b51e7a11957a1958c432bce7531574418b68a410
Author: Odnes <od...@tiptheiceberg.com>
AuthorDate: Fri Nov 12 10:53:23 2021 +0200

    Correct typos
---
 ...essing-a-message-from-a-certain-point-back-or-an-entire-route.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/user-manual/modules/faq/pages/how-do-i-retry-processing-a-message-from-a-certain-point-back-or-an-entire-route.adoc b/docs/user-manual/modules/faq/pages/how-do-i-retry-processing-a-message-from-a-certain-point-back-or-an-entire-route.adoc
index 5d684b7..d0fe086 100644
--- a/docs/user-manual/modules/faq/pages/how-do-i-retry-processing-a-message-from-a-certain-point-back-or-an-entire-route.adoc
+++ b/docs/user-manual/modules/faq/pages/how-do-i-retry-processing-a-message-from-a-certain-point-back-or-an-entire-route.adoc
@@ -4,7 +4,7 @@ By default Apache Camel will perform any redelivery (retry) attempts
 from the point of failure. So if you want to retry from a point before
 this, you would need to split up your route.
 
-In the example above we have 2 routes (`direct:start`, `direct:sub`). In
+In the example below we have 2 routes (`direct:start`, `direct:sub`). In
 case of a failure anywhere in the `direct:sub` route, then the entire
 route is retried. This happens because we have instructed the `direct:sub`
 route to not use any error handler (eg the no error handler). Then we
@@ -33,7 +33,7 @@ from("direct:sub")
 
 The code above is based on an unit test, and as you can see the
 processor below is configured to fail the first 2 attempts.
-So that means the entire `direct:sub` route is redeliveried, meaning that
+So that means the entire `direct:sub` route is redelivered, meaning that
 the `mock:b` endpoint receives the incoming message again.
 
 [source,java]