From 8fba11dd74cd5d0ee9a3bb1a70b687451394e56e Mon Sep 17 00:00:00 2001 From: Simon Willnauer Date: Fri, 3 Jan 2014 17:55:53 +0100 Subject: [PATCH] Fix typo in JavaDoc -- s/note/not --- .../allocation/decider/NodeVersionAllocationDecider.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/elasticsearch/cluster/routing/allocation/decider/NodeVersionAllocationDecider.java b/src/main/java/org/elasticsearch/cluster/routing/allocation/decider/NodeVersionAllocationDecider.java index 219b9a9bbe2..0015fd62696 100644 --- a/src/main/java/org/elasticsearch/cluster/routing/allocation/decider/NodeVersionAllocationDecider.java +++ b/src/main/java/org/elasticsearch/cluster/routing/allocation/decider/NodeVersionAllocationDecider.java @@ -29,7 +29,7 @@ import org.elasticsearch.common.settings.Settings; /** * An allocation decider that prevents relocation or allocation from nodes - * that might note be version compatible. If we relocate from a node that runs + * that might not be version compatible. If we relocate from a node that runs * a newer version than the node we relocate to this might cause {@link org.apache.lucene.index.IndexFormatTooNewException} * on the lowest level since it might have already written segments that use a new postings format or codec that is not * available on the target node.