From 08905be2cacca70bc4d4ae85408c0b07b45c4e56 Mon Sep 17 00:00:00 2001 From: David Pilato Date: Wed, 24 Feb 2016 14:05:09 -0800 Subject: [PATCH] Revert javadoc change: iff is correct --- .../main/java/org/elasticsearch/common/settings/Setting.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/org/elasticsearch/common/settings/Setting.java b/core/src/main/java/org/elasticsearch/common/settings/Setting.java index e1349cc2a00..1e0e2190fcc 100644 --- a/core/src/main/java/org/elasticsearch/common/settings/Setting.java +++ b/core/src/main/java/org/elasticsearch/common/settings/Setting.java @@ -78,7 +78,7 @@ public class Setting extends ToXContentToBytes { * @param key the settings key for this setting. * @param defaultValue a default value function that returns the default values string representation. * @param parser a parser that parses the string rep into a complex datatype. - * @param dynamic true if this setting can be dynamically updateable + * @param dynamic true iff this setting can be dynamically updateable * @param scope the scope of this setting */ public Setting(String key, Function defaultValue, Function parser, boolean dynamic, Scope scope) { @@ -90,7 +90,7 @@ public class Setting extends ToXContentToBytes { * @param key the settings key for this setting. * @param defaultValue a default value function that returns the default values string representation. * @param parser a parser that parses the string rep into a complex datatype. - * @param dynamic true if this setting can be dynamically updateable + * @param dynamic true iff this setting can be dynamically updateable * @param scope the scope of this setting * @param filtered true if this setting should be filtered */