You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sh...@apache.org on 2014/12/12 15:53:43 UTC

svn commit: r1644911 - /lucene/dev/trunk/solr/core/src/java/org/apache/solr/handler/component/QueryComponent.java

Author: shalin
Date: Fri Dec 12 14:53:43 2014
New Revision: 1644911

URL: http://svn.apache.org/r1644911
Log:
Fixed typo in comment

Modified:
    lucene/dev/trunk/solr/core/src/java/org/apache/solr/handler/component/QueryComponent.java

Modified: lucene/dev/trunk/solr/core/src/java/org/apache/solr/handler/component/QueryComponent.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/core/src/java/org/apache/solr/handler/component/QueryComponent.java?rev=1644911&r1=1644910&r2=1644911&view=diff
==============================================================================
--- lucene/dev/trunk/solr/core/src/java/org/apache/solr/handler/component/QueryComponent.java (original)
+++ lucene/dev/trunk/solr/core/src/java/org/apache/solr/handler/component/QueryComponent.java Fri Dec 12 14:53:43 2014
@@ -286,7 +286,7 @@ public class QueryComponent extends Sear
     // -1 as flag if not set.
     long timeAllowed = params.getLong(CommonParams.TIME_ALLOWED, -1L);
     if (null != rb.getCursorMark() && 0 < timeAllowed) {
-      // fundementally incompatible
+      // fundamentally incompatible
       throw new SolrException(SolrException.ErrorCode.BAD_REQUEST, "Can not search using both " +
                               CursorMarkParams.CURSOR_MARK_PARAM + " and " + CommonParams.TIME_ALLOWED);
     }