You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by jb...@apache.org on 2016/07/06 23:20:52 UTC

[2/2] lucene-solr:branch_6x: SOLR-9193: Fix-up javdoc

SOLR-9193: Fix-up javdoc


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/a86f25ea
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/a86f25ea
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/a86f25ea

Branch: refs/heads/branch_6x
Commit: a86f25ea0c3cb7e1f628d93cfbc4c7b73dbb92a8
Parents: 6a27833
Author: jbernste <jb...@apache.org>
Authored: Wed Jul 6 18:58:58 2016 -0400
Committer: jbernste <jb...@apache.org>
Committed: Wed Jul 6 19:20:44 2016 -0400

----------------------------------------------------------------------
 .../apache/solr/client/solrj/io/stream/ScoreNodesStream.java   | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/a86f25ea/solr/solrj/src/java/org/apache/solr/client/solrj/io/stream/ScoreNodesStream.java
----------------------------------------------------------------------
diff --git a/solr/solrj/src/java/org/apache/solr/client/solrj/io/stream/ScoreNodesStream.java b/solr/solrj/src/java/org/apache/solr/client/solrj/io/stream/ScoreNodesStream.java
index 9f61baa..6c8247f 100644
--- a/solr/solrj/src/java/org/apache/solr/client/solrj/io/stream/ScoreNodesStream.java
+++ b/solr/solrj/src/java/org/apache/solr/client/solrj/io/stream/ScoreNodesStream.java
@@ -43,13 +43,13 @@ import org.apache.solr.common.params.TermsParams;
 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:
  *
- *  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)")
  *
  **/