From 3a6c519be17784166aea07ba20d007cba7d701e3 Mon Sep 17 00:00:00 2001 From: Robert Muir Date: Tue, 25 Dec 2012 02:07:25 +0000 Subject: [PATCH] fix javadocs bugs in scoring formula git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1425702 13f79535-47bb-0310-9956-ffa450edef68 --- .../lucene/sandbox/postingshighlight/PassageScorer.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lucene/sandbox/src/java/org/apache/lucene/sandbox/postingshighlight/PassageScorer.java b/lucene/sandbox/src/java/org/apache/lucene/sandbox/postingshighlight/PassageScorer.java index 890b4db3d1c..5a0aa76c6a1 100644 --- a/lucene/sandbox/src/java/org/apache/lucene/sandbox/postingshighlight/PassageScorer.java +++ b/lucene/sandbox/src/java/org/apache/lucene/sandbox/postingshighlight/PassageScorer.java @@ -24,8 +24,8 @@ import org.apache.lucene.search.TermStatistics; * Used for ranking passages. *

* Each passage is scored as a miniature document within the document. - * The final score is computed as {@link #norm} * {@link #weight} * ∑ {@link #tf}. - * The default implementation is BM25 * {@link #norm}. + * The final score is computed as {@link #norm} * ∑ ({@link #weight} * {@link #tf}). + * The default implementation is {@link #norm} * BM25. * @lucene.experimental */ public class PassageScorer {