- Made a small method javadoc change.

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@149787 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Otis Gospodnetic 2002-06-25 16:18:32 +00:00
parent 43f5e32b7e
commit ad73dd681f
1 changed files with 1 additions and 2 deletions

View File

@ -93,8 +93,7 @@ public final class Field {
}
/** Constructs a Date-valued Field that is tokenized and indexed,
and is stored in the index, for return with hits. Useful for short text
fields, like "title" or "subject". */
and is stored in the index, for return with hits. */
public static final Field Keyword(String name, Date value) {
return new Field(name, DateField.dateToString(value), true, true, true);
}