- Small javadoc fix reported by Ernesto De Santis

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150441 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Otis Gospodnetic 2004-08-17 20:22:33 +00:00
parent d0333a5634
commit 814761c635
1 changed files with 4 additions and 4 deletions

View File

@ -61,14 +61,14 @@ public final class Field implements java.io.Serializable {
this.boost = boost;
}
/** Returns the boost factor for hits on any field of this document.
/** Returns the boost factor for hits for this field.
*
* <p>The default value is 1.0.
*
* <p>Note: this value is not stored directly with the document in the index.
* Documents returned from {@link IndexReader#document(int)} and {@link
* Hits#doc(int)} may thus not have the same value present as when this field
* was indexed.
* Documents returned from {@link IndexReader#document(int)} and
* {@link Hits#doc(int)} may thus not have the same value present as when
* this field was indexed.
*
* @see #setBoost(float)
*/