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:30:33 UTC

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

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_7x a514392cc -> 1ab6b8e5d


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/2160a279
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/2160a279
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/2160a279

Branch: refs/heads/branch_7x
Commit: 2160a2797f7b5ac211924ba22dc93e17200d69cc
Parents: a514392
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 19:29:59 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/2160a279/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 e8069cc..fdf0eeb 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:branch_7x: 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/1ab6b8e5
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/1ab6b8e5
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/1ab6b8e5

Branch: refs/heads/branch_7x
Commit: 1ab6b8e5d8883aa21eeba23f8327f2b9431adb43
Parents: 2160a27
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 19:30:09 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/1ab6b8e5/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);
   }