From 9b4e9465db7131892fcf4e681a3a8edd71cf2bd1 Mon Sep 17 00:00:00 2001 From: Rohan Bhargava Date: Mon, 14 Aug 2017 11:04:18 -0700 Subject: [PATCH] made minor changes to docstring --- .../org/apache/lucene/search/DocValuesFieldExistsQuery.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lucene/core/src/java/org/apache/lucene/search/DocValuesFieldExistsQuery.java b/lucene/core/src/java/org/apache/lucene/search/DocValuesFieldExistsQuery.java index cbb5e043d7b9..47964f6542f3 100644 --- a/lucene/core/src/java/org/apache/lucene/search/DocValuesFieldExistsQuery.java +++ b/lucene/core/src/java/org/apache/lucene/search/DocValuesFieldExistsQuery.java @@ -34,7 +34,7 @@ public final class DocValuesFieldExistsQuery extends Query { private final String field; - /** Create a query that will match that have a value for the given + /** Create a query that will match documents which have a value for the given * {@code field}. */ public DocValuesFieldExistsQuery(String field) { this.field = Objects.requireNonNull(field);