You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by cp...@apache.org on 2017/01/30 10:32:22 UTC

lucene-solr:branch_6x: LUCENE-7666: Fix typos in lucene-join package info javadoc. (Tom Saleeba via Christine Poerschke)

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_6x b6b44d44d -> bbe4ba0c3


LUCENE-7666: Fix typos in lucene-join package info javadoc. (Tom Saleeba via Christine Poerschke)


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

Branch: refs/heads/branch_6x
Commit: bbe4ba0c350b882cdf87c68f11d91bf39b899813
Parents: b6b44d4
Author: Christine Poerschke <cp...@apache.org>
Authored: Mon Jan 30 10:17:39 2017 +0000
Committer: Christine Poerschke <cp...@apache.org>
Committed: Mon Jan 30 10:31:45 2017 +0000

----------------------------------------------------------------------
 lucene/CHANGES.txt                                              | 5 +++++
 .../src/java/org/apache/lucene/search/join/package-info.java    | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/bbe4ba0c/lucene/CHANGES.txt
----------------------------------------------------------------------
diff --git a/lucene/CHANGES.txt b/lucene/CHANGES.txt
index c26b8b9..44b1fe8 100644
--- a/lucene/CHANGES.txt
+++ b/lucene/CHANGES.txt
@@ -90,6 +90,11 @@ Build
 
 * LUCENE-7653: Update randomizedtesting to version 2.5.0. (Dawid Weiss)
 
+Other
+
+* LUCENE-7666: Fix typos in lucene-join package info javadoc.
+  (Tom Saleeba via Christine Poerschke)
+
 ======================= Lucene 6.4.1 =======================
 
 Bug Fixes

http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/bbe4ba0c/lucene/join/src/java/org/apache/lucene/search/join/package-info.java
----------------------------------------------------------------------
diff --git a/lucene/join/src/java/org/apache/lucene/search/join/package-info.java b/lucene/join/src/java/org/apache/lucene/search/join/package-info.java
index 5b05c1f..7c7ff67 100644
--- a/lucene/join/src/java/org/apache/lucene/search/join/package-info.java
+++ b/lucene/join/src/java/org/apache/lucene/search/join/package-info.java
@@ -91,9 +91,9 @@
  * </p>
  * <pre class="prettyprint">
  *   String fromField = "from"; // Name of the from field
- *   boolean multipleValuesPerDocument = false; // Set only yo true in the case when your fromField has multiple values per document in your index
+ *   boolean multipleValuesPerDocument = false; // Set only to true in the case when your fromField has multiple values per document in your index
  *   String toField = "to"; // Name of the to field
- *   ScoreMode scoreMode = ScoreMode.Max // Defines how the scores are translated into the other side of the join.
+ *   ScoreMode scoreMode = ScoreMode.Max; // Defines how the scores are translated into the other side of the join.
  *   Query fromQuery = new TermQuery(new Term("content", searchTerm)); // Query executed to collect from values to join to the to values
  * 
  *   Query joinQuery = JoinUtil.createJoinQuery(fromField, multipleValuesPerDocument, toField, fromQuery, fromSearcher, scoreMode);