diff --git a/server/src/main/java/org/elasticsearch/index/query/QueryBuilders.java b/server/src/main/java/org/elasticsearch/index/query/QueryBuilders.java index ce97a595c89b4..1adab314e63ba 100644 --- a/server/src/main/java/org/elasticsearch/index/query/QueryBuilders.java +++ b/server/src/main/java/org/elasticsearch/index/query/QueryBuilders.java @@ -485,7 +485,7 @@ public static NestedQueryBuilder nestedQuery(String path, QueryBuilder query, Sc } /** - * A filer for a field based on several terms matching on any of them. + * A filter for a field based on several terms matching on any of them. * * @param name The field name * @param values The terms @@ -495,7 +495,7 @@ public static TermsQueryBuilder termsQuery(String name, String... values) { } /** - * A filer for a field based on several terms matching on any of them. + * A filter for a field based on several terms matching on any of them. * * @param name The field name * @param values The terms @@ -505,7 +505,7 @@ public static TermsQueryBuilder termsQuery(String name, int... values) { } /** - * A filer for a field based on several terms matching on any of them. + * A filter for a field based on several terms matching on any of them. * * @param name The field name * @param values The terms @@ -515,7 +515,7 @@ public static TermsQueryBuilder termsQuery(String name, long... values) { } /** - * A filer for a field based on several terms matching on any of them. + * A filter for a field based on several terms matching on any of them. * * @param name The field name * @param values The terms @@ -525,7 +525,7 @@ public static TermsQueryBuilder termsQuery(String name, float... values) { } /** - * A filer for a field based on several terms matching on any of them. + * A filter for a field based on several terms matching on any of them. * * @param name The field name * @param values The terms @@ -535,7 +535,7 @@ public static TermsQueryBuilder termsQuery(String name, double... values) { } /** - * A filer for a field based on several terms matching on any of them. + * A filter for a field based on several terms matching on any of them. * * @param name The field name * @param values The terms @@ -545,7 +545,7 @@ public static TermsQueryBuilder termsQuery(String name, Object... values) { } /** - * A filer for a field based on several terms matching on any of them. + * A filter for a field based on several terms matching on any of them. * * @param name The field name * @param values The terms