fix javadocs bugs in scoring formula

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1425702 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Muir 2012-12-25 02:07:25 +00:00
parent 471c1149e7
commit 3a6c519be1
1 changed files with 2 additions and 2 deletions

View File

@ -24,8 +24,8 @@ import org.apache.lucene.search.TermStatistics;
* Used for ranking passages. * Used for ranking passages.
* <p> * <p>
* Each passage is scored as a miniature document within the document. * Each passage is scored as a miniature document within the document.
* The final score is computed as {@link #norm} * {@link #weight} * &sum; {@link #tf}. * The final score is computed as {@link #norm} * &sum; ({@link #weight} * {@link #tf}).
* The default implementation is BM25 * {@link #norm}. * The default implementation is {@link #norm} * BM25.
* @lucene.experimental * @lucene.experimental
*/ */
public class PassageScorer { public class PassageScorer {