SOLR-9193: Fix-up javdoc

This commit is contained in:
jbernste 2016-07-06 18:58:58 -04:00
parent db295440a6
commit d9a0eba1a3
1 changed files with 3 additions and 3 deletions

View File

@ -43,13 +43,13 @@ import org.apache.solr.common.params.TermsParams;
import org.apache.solr.common.util.NamedList; import org.apache.solr.common.util.NamedList;
/** /**
* Iterates over a gatherNodes() expression and scores the node Tuples based based on tf-idf. * Iterates over a gatherNodes() expression and scores the Tuples based on tf-idf.
* *
* Expression Syntax: * Expression Syntax:
* *
* Default function call uses the "count(*)" field for node freq. * Default function call uses the "count(*)" field for termFreq.
* *
* You can use a different value for node freq by providing the nodeFreq param * You can use a different value for termFreq by providing the termFreq param
* scoreNodes(gatherNodes(...), termFreq="min(weight)") * scoreNodes(gatherNodes(...), termFreq="min(weight)")
* *
**/ **/