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

orpiske pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 3f19d679676540fca42bdf14a33bb99fb3fcce94
Author: Otavio Rodolfo Piske <angusyo...@gmail.com>
AuthorDate: Wed Feb 21 13:09:59 2024 +0100

    CAMEL-20410: documentation fixes for camel-master
    
    - Fixed samples
    - Fixed grammar and typos
    - Fixed punctuation
    - Added and/or fixed links
    - Converted to use tabs
---
 .../camel-master/src/main/docs/master-component.adoc       | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/components/camel-master/src/main/docs/master-component.adoc 
b/components/camel-master/src/main/docs/master-component.adoc
index a2da8e3bb6d..0cb6ca8f44a 100644
--- a/components/camel-master/src/main/docs/master-component.adoc
+++ b/components/camel-master/src/main/docs/master-component.adoc
@@ -15,10 +15,10 @@
 *{component-header}*
 
 The Camel-Master endpoint provides a way to ensure only a single consumer in a 
cluster consumes from a given endpoint;
-with automatic failover if that JVM dies.
+with automatic fail over if that JVM dies.
 
-This can be very useful if you need to consume from some legacy back end which 
either doesn't support concurrent
-consumption or due to commercial or stability reasons you can only have a 
single connection at any point in time.
+This can be handy if you need to consume from some legacy back end that either 
doesn't support concurrent
+consumption or due to commercial or stability reasons, you can only have a 
single connection at any point in time.
 
 == Using the master endpoint
 
@@ -31,13 +31,13 @@ from("master:cheese:jms:foo")
   .to("activemq:wine");
 ----
 
-In this example, there master component ensures that the route is only active 
in one node, at any given time, in the cluster.
+In this example, the master component ensures that the route is only active in 
one node, at any given time, in the cluster.
 So if there are 8 nodes in the cluster, then the master component will elect 
one route to be the leader, and only
 this route will be active, and hence only this route will consume messages 
from `jms:foo`.
-In case this route is stopped or unexpected terminated, then the master 
component will detect this,
+In case this route is stopped or unexpectedly terminated, then the master 
component will detect this,
 and re-elect another node to be active, which will then become active and 
start consuming messages from `jms:foo`.
 
-TIP: Apache ActiveMQ 5.x has such feature out of the box called 
https://activemq.apache.org/exclusive-consumer.html[Exclusive Consumers].
+TIP: Apache ActiveMQ 5.x has such a feature out of the box called 
https://activemq.apache.org/exclusive-consumer.html[Exclusive Consumers].
 
 == URI format
 
@@ -45,7 +45,7 @@ TIP: Apache ActiveMQ 5.x has such feature out of the box 
called https://activemq
 master:namespace:endpoint[?options]
 ----
 
-Where endpoint is any Camel endpoint you want to run in master/slave mode.
+Where endpoint is any Camel endpoint, you want to run in master/slave mode.
 
 
 // component-configure options: START

Reply via email to