From 610f262aac0b0e9be7f0a59ff81b47a2dd70b9ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Dev=C3=A8ze?= Date: Sat, 17 Aug 2013 13:43:23 +0200 Subject: [PATCH] Fix small javadoc typos for IndexShardRoutingTable --- .../cluster/routing/IndexShardRoutingTable.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/elasticsearch/cluster/routing/IndexShardRoutingTable.java b/src/main/java/org/elasticsearch/cluster/routing/IndexShardRoutingTable.java index beef6f3cc8c..70f4deee709 100644 --- a/src/main/java/org/elasticsearch/cluster/routing/IndexShardRoutingTable.java +++ b/src/main/java/org/elasticsearch/cluster/routing/IndexShardRoutingTable.java @@ -36,10 +36,10 @@ import java.util.concurrent.atomic.AtomicInteger; import static com.google.common.collect.Lists.newArrayList; /** - * {@link IndexShardRoutingTable} encapsulates all instances or a single shard. - * Each ElasticSearch index consists of multiple shards each shards encapsulates - * a disjoint set of the index data and earch shard has one more more instances - * refered to as replicas of a shard. Given that, this class encapsulates all + * {@link IndexShardRoutingTable} encapsulates all instances of a single shard. + * Each ElasticSearch index consists of multiple shards, each shard encapsulates + * a disjoint set of the index data and each shard has one or more instances + * referred to as replicas of a shard. Given that, this class encapsulates all * replicas (instances) for a single index shard. */ public class IndexShardRoutingTable implements Iterable {