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 2018/09/25 18:29:23 UTC

[1/2] lucene-solr:master: Fix javadoc typo in TermInSetQuery.

Repository: lucene-solr
Updated Branches:
  refs/heads/master e16d7d699 -> 58167666c


Fix javadoc typo in TermInSetQuery.


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

Branch: refs/heads/master
Commit: 05f935f6e480ec314e4568b9349810fcd53cc74f
Parents: e16d7d6
Author: Christine Poerschke <cp...@apache.org>
Authored: Tue Sep 25 17:55:42 2018 +0100
Committer: Christine Poerschke <cp...@apache.org>
Committed: Tue Sep 25 17:56:38 2018 +0100

----------------------------------------------------------------------
 lucene/core/src/java/org/apache/lucene/search/TermInSetQuery.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/05f935f6/lucene/core/src/java/org/apache/lucene/search/TermInSetQuery.java
----------------------------------------------------------------------
diff --git a/lucene/core/src/java/org/apache/lucene/search/TermInSetQuery.java b/lucene/core/src/java/org/apache/lucene/search/TermInSetQuery.java
index 896f20f..9181668 100644
--- a/lucene/core/src/java/org/apache/lucene/search/TermInSetQuery.java
+++ b/lucene/core/src/java/org/apache/lucene/search/TermInSetQuery.java
@@ -49,7 +49,7 @@ import org.apache.lucene.util.RamUsageEstimator;
  * Specialization for a disjunction over many terms that behaves like a
  * {@link ConstantScoreQuery} over a {@link BooleanQuery} containing only
  * {@link org.apache.lucene.search.BooleanClause.Occur#SHOULD} clauses.
- * <p>For instance in the following example, both @{code q1} and {@code q2}
+ * <p>For instance in the following example, both {@code q1} and {@code q2}
  * would yield the same scores:
  * <pre class="prettyprint">
  * Query q1 = new TermInSetQuery(new Term("field", "foo"), new Term("field", "bar"));


[2/2] lucene-solr:master: Fix comment typo in SolrConfig.

Posted by cp...@apache.org.
Fix comment typo in SolrConfig.


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

Branch: refs/heads/master
Commit: 58167666c393c261982ecd7b3d17201a76afda17
Parents: 05f935f
Author: Christine Poerschke <cp...@apache.org>
Authored: Tue Sep 25 17:56:05 2018 +0100
Committer: Christine Poerschke <cp...@apache.org>
Committed: Tue Sep 25 17:56:39 2018 +0100

----------------------------------------------------------------------
 solr/core/src/java/org/apache/solr/core/SolrConfig.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/58167666/solr/core/src/java/org/apache/solr/core/SolrConfig.java
----------------------------------------------------------------------
diff --git a/solr/core/src/java/org/apache/solr/core/SolrConfig.java b/solr/core/src/java/org/apache/solr/core/SolrConfig.java
index 6bfa08d..fcae44e 100644
--- a/solr/core/src/java/org/apache/solr/core/SolrConfig.java
+++ b/solr/core/src/java/org/apache/solr/core/SolrConfig.java
@@ -382,7 +382,7 @@ public class SolrConfig extends Config implements MapSerializable {
   {
     // non-static setMaxClauseCount because the test framework sometimes reverts the value on us and
     // the static setting above is only executed once.  This re-sets the value every time a SolrConfig
-    // obect is created. See SOLR-10921
+    // object is created. See SOLR-10921
     BooleanQuery.setMaxClauseCount(Integer.MAX_VALUE-1);
   }