You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2020/09/08 08:01:31 UTC

[camel] branch master updated: Document change (#4171)

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

davsclaus 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 c37bd52  Document change (#4171)
c37bd52 is described below

commit c37bd52f7a9f47bb758d76241652fe34b762d456
Author: Nitesh Koushik S <39...@users.noreply.github.com>
AuthorDate: Tue Sep 8 13:31:14 2020 +0530

    Document change (#4171)
    
    Spelling correction from "folowing" to "following" and "rooute" to "route"
    Correcting the verb "choosed" to "chose"
---
 docs/user-manual/modules/ROOT/pages/clustering.adoc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/user-manual/modules/ROOT/pages/clustering.adoc b/docs/user-manual/modules/ROOT/pages/clustering.adoc
index 8280193..8627e42 100644
--- a/docs/user-manual/modules/ROOT/pages/clustering.adoc
+++ b/docs/user-manual/modules/ROOT/pages/clustering.adoc
@@ -39,7 +39,7 @@ MyClusterServiceImpl service = new MyClusterServiceImpl();
 context.addService(service);
 ----
 
-The configuration of the _Cluster Service_ depends on the implementation you have choosed.
+The configuration of the _Cluster Service_ depends on the implementation you have chose.
 Out of the box camel provides the following implementations:
 
 [cols="1,1,2", options="header"]
@@ -95,7 +95,7 @@ camel.component.file.cluster.service.root = ${java.io.tmpdir}
 
 == Cluster SPI Usage
 
-The _Cluster SPI_ is leveraged by the folowing new implementations:
+The _Cluster SPI_ is leveraged by the following new implementations:
 
 - *ClusteredRoutePolicy*
 +
@@ -117,7 +117,7 @@ context.addRoutes(new RouteBuilder {
 });
 ----
 +
-To apply the same policy to all the rooutes a dedicated  _RoutePolicyFactory_ can be used:
+To apply the same policy to all the routes a dedicated  _RoutePolicyFactory_ can be used:
 +
 [source,java]
 ----