From 7a8e420363da86d178d34509e3344f437a5564e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Vl=C4=8Dek?= Date: Fri, 13 Jan 2012 14:25:13 +0100 Subject: [PATCH] fix typos in javadoc --- .../indices/template/put/PutIndexTemplateRequest.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/java/org/elasticsearch/action/admin/indices/template/put/PutIndexTemplateRequest.java b/src/main/java/org/elasticsearch/action/admin/indices/template/put/PutIndexTemplateRequest.java index 308ab2d0225..b3934931510 100644 --- a/src/main/java/org/elasticsearch/action/admin/indices/template/put/PutIndexTemplateRequest.java +++ b/src/main/java/org/elasticsearch/action/admin/indices/template/put/PutIndexTemplateRequest.java @@ -45,7 +45,7 @@ import static org.elasticsearch.common.settings.ImmutableSettings.writeSettingsT import static org.elasticsearch.common.unit.TimeValue.readTimeValue; /** - * + * A request to create an index template. */ public class PutIndexTemplateRequest extends MasterNodeOperationRequest { @@ -134,7 +134,7 @@ public class PutIndexTemplateRequest extends MasterNodeOperationRequest { } /** - * The settings to created the index template with. + * The settings to create the index template with. */ public PutIndexTemplateRequest settings(Settings settings) { this.settings = settings; @@ -142,7 +142,7 @@ public class PutIndexTemplateRequest extends MasterNodeOperationRequest { } /** - * The settings to created the index template with. + * The settings to create the index template with. */ public PutIndexTemplateRequest settings(Settings.Builder settings) { this.settings = settings.build(); @@ -150,7 +150,7 @@ public class PutIndexTemplateRequest extends MasterNodeOperationRequest { } /** - * The settings to crete the index template with (either json/yaml/properties format) + * The settings to crete the index template with (either json/yaml/properties format). */ public PutIndexTemplateRequest settings(String source) { this.settings = ImmutableSettings.settingsBuilder().loadFromSource(source).build(); @@ -158,7 +158,7 @@ public class PutIndexTemplateRequest extends MasterNodeOperationRequest { } /** - * The settings to crete the index template with (either json/yaml/properties format) + * The settings to crete the index template with (either json/yaml/properties format). */ public PutIndexTemplateRequest settings(Map source) { try {