- Very minor documentation grammar fix.

PR:
Obtained from:
Submitted by:
Reviewed by:


git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@149629 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Otis Gospodnetic 2001-11-20 05:22:31 +00:00
parent 20c937d3c0
commit c05b8e334b
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ public final class Field {
return new Field(name, value, true, true, false);
}
/** Constructs a String-valued Field that is not tokenized or indexed,
/** Constructs a String-valued Field that is not tokenized nor indexed,
but is stored in the index, for return with hits. */
public static final Field UnIndexed(String name, String value) {
return new Field(name, value, true, false, false);