From 7f0c52b066d68a1bc6edad18657a8f38421805b6 Mon Sep 17 00:00:00 2001 From: Erik Hatcher Date: Wed, 9 Jan 2013 11:38:08 +0000 Subject: [PATCH] fix typos in comment git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1430798 13f79535-47bb-0310-9956-ffa450edef68 --- solr/core/src/java/org/apache/solr/util/SolrPluginUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solr/core/src/java/org/apache/solr/util/SolrPluginUtils.java b/solr/core/src/java/org/apache/solr/util/SolrPluginUtils.java index 1fff3440d25..7fcc6bf29a8 100644 --- a/solr/core/src/java/org/apache/solr/util/SolrPluginUtils.java +++ b/solr/core/src/java/org/apache/solr/util/SolrPluginUtils.java @@ -622,7 +622,7 @@ public class SolrPluginUtils { private final static Pattern CONSECUTIVE_OP_PATTERN = Pattern.compile( "\\s+[+-](?:\\s*[+-]+)+" ); /** - * Strips operators that are used illegally, otherwise reuturns it's + * Strips operators that are used illegally, otherwise returns its * input. Some examples of illegal user queries are: "chocolate +- * chip", "chocolate - - chip", and "chocolate chip -". */