You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by an...@apache.org on 2016/10/11 20:56:37 UTC

lucene-solr:jira/solr-8396: SOLR-8396: Fix typos in Exception messages

Repository: lucene-solr
Updated Branches:
  refs/heads/jira/solr-8396 6d39d66bc -> 231910bc6


SOLR-8396: Fix typos in Exception messages


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

Branch: refs/heads/jira/solr-8396
Commit: 231910bc647685cbff9f6a0157b0a655b296da55
Parents: 6d39d66
Author: Anshum Gupta <an...@apache.org>
Authored: Tue Oct 11 16:55:52 2016 -0400
Committer: Anshum Gupta <an...@apache.org>
Committed: Tue Oct 11 16:56:22 2016 -0400

----------------------------------------------------------------------
 .../org/apache/solr/handler/component/RangeFacetRequest.java     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/231910bc/solr/core/src/java/org/apache/solr/handler/component/RangeFacetRequest.java
----------------------------------------------------------------------
diff --git a/solr/core/src/java/org/apache/solr/handler/component/RangeFacetRequest.java b/solr/core/src/java/org/apache/solr/handler/component/RangeFacetRequest.java
index 2567fab..f129e73 100644
--- a/solr/core/src/java/org/apache/solr/handler/component/RangeFacetRequest.java
+++ b/solr/core/src/java/org/apache/solr/handler/component/RangeFacetRequest.java
@@ -165,7 +165,7 @@ public class RangeFacetRequest extends FacetComponent.FacetBase {
         default:
           throw new SolrException
               (SolrException.ErrorCode.BAD_REQUEST,
-                  "Unable to range facet on tried field of unexpected type:" + this.facetOn);
+                  "Unable to range facet on Trie field of unexpected type:" + this.facetOn);
       }
     } else if (ft instanceof DateRangeField) {
       calc = new DateRangeEndpointCalculator(this, null);
@@ -190,7 +190,7 @@ public class RangeFacetRequest extends FacetComponent.FacetBase {
         default:
           throw new SolrException
               (SolrException.ErrorCode.BAD_REQUEST,
-                  "Unable to range facet on tried field of unexpected type:" + this.facetOn);
+                  "Unable to range facet on Point field of unexpected type:" + this.facetOn);
       }
     } else {
       throw new SolrException