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 2017/05/26 09:25:27 UTC

lucene-solr:master: Fixed a couple of typos (s/begining/beginning).

Repository: lucene-solr
Updated Branches:
  refs/heads/master 5f12becb1 -> 4106e1b51


Fixed a couple of typos (s/begining/beginning).


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

Branch: refs/heads/master
Commit: 4106e1b51acb20a96c0f7ae77b07902edb946e93
Parents: 5f12bec
Author: Christine Poerschke <cp...@apache.org>
Authored: Fri May 26 10:10:01 2017 +0100
Committer: Christine Poerschke <cp...@apache.org>
Committed: Fri May 26 10:10:01 2017 +0100

----------------------------------------------------------------------
 .../java/org/apache/lucene/analysis/core/StopFilterFactory.java    | 2 +-
 .../apache/lucene/analysis/compound/hyphenation/hyphenation.dtd    | 2 +-
 .../src/test/org/apache/lucene/analysis/compound/hyphenation.dtd   | 2 +-
 .../lucene/search/suggest/analyzing/SuggestStopFilterFactory.java  | 2 +-
 solr/core/src/java/org/apache/solr/update/SolrIndexConfig.java     | 2 +-
 .../solr/update/processor/DocExpirationUpdateProcessorFactory.java | 2 +-
 solr/core/src/test-files/solr/collection1/conf/hyphenation.dtd     | 2 +-
 solr/solr-ref-guide/src/filter-descriptions.adoc                   | 2 +-
 solr/solr-ref-guide/src/other-parsers.adoc                         | 2 +-
 9 files changed, 9 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/4106e1b5/lucene/analysis/common/src/java/org/apache/lucene/analysis/core/StopFilterFactory.java
----------------------------------------------------------------------
diff --git a/lucene/analysis/common/src/java/org/apache/lucene/analysis/core/StopFilterFactory.java b/lucene/analysis/common/src/java/org/apache/lucene/analysis/core/StopFilterFactory.java
index 37e9d2b..b6b8b60 100644
--- a/lucene/analysis/common/src/java/org/apache/lucene/analysis/core/StopFilterFactory.java
+++ b/lucene/analysis/common/src/java/org/apache/lucene/analysis/core/StopFilterFactory.java
@@ -58,7 +58,7 @@ import org.apache.lucene.analysis.util.TokenFilterFactory;
  * <ul>
  *  <li><code>wordset</code> - This is the default format, which supports one word per 
  *      line (including any intra-word whitespace) and allows whole line comments 
- *      begining with the "#" character.  Blank lines are ignored.  See 
+ *      beginning with the "#" character.  Blank lines are ignored.  See 
  *      {@link WordlistLoader#getLines WordlistLoader.getLines} for details.
  *  </li>
  *  <li><code>snowball</code> - This format allows for multiple words specified on each 

http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/4106e1b5/lucene/analysis/common/src/resources/org/apache/lucene/analysis/compound/hyphenation/hyphenation.dtd
----------------------------------------------------------------------
diff --git a/lucene/analysis/common/src/resources/org/apache/lucene/analysis/compound/hyphenation/hyphenation.dtd b/lucene/analysis/common/src/resources/org/apache/lucene/analysis/compound/hyphenation/hyphenation.dtd
index daca530..f413afc 100644
--- a/lucene/analysis/common/src/resources/org/apache/lucene/analysis/compound/hyphenation/hyphenation.dtd
+++ b/lucene/analysis/common/src/resources/org/apache/lucene/analysis/compound/hyphenation/hyphenation.dtd
@@ -53,7 +53,7 @@
 <!-- The hyphenation patterns, space separated. A pattern is made of 'equivalent'
      characters as described before, between any two word characters a digit
      in the range 0 to 9 may be specified. The absence of a digit is equivalent
-     to zero. The '.' character is reserved to indicate begining or ending
+     to zero. The '.' character is reserved to indicate beginning or ending
      of words. -->
 <!ELEMENT patterns (#PCDATA)>
 

http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/4106e1b5/lucene/analysis/common/src/test/org/apache/lucene/analysis/compound/hyphenation.dtd
----------------------------------------------------------------------
diff --git a/lucene/analysis/common/src/test/org/apache/lucene/analysis/compound/hyphenation.dtd b/lucene/analysis/common/src/test/org/apache/lucene/analysis/compound/hyphenation.dtd
index 15bb8ca..fb3db16 100644
--- a/lucene/analysis/common/src/test/org/apache/lucene/analysis/compound/hyphenation.dtd
+++ b/lucene/analysis/common/src/test/org/apache/lucene/analysis/compound/hyphenation.dtd
@@ -54,7 +54,7 @@
 <!-- The hyphenation patterns, space separated. A pattern is made of 'equivalent'
      characters as described before, between any two word characters a digit
      in the range 0 to 9 may be specified. The absence of a digit is equivalent
-     to zero. The '.' character is reserved to indicate begining or ending
+     to zero. The '.' character is reserved to indicate beginning or ending
      of words. -->
 <!ELEMENT patterns (#PCDATA)>
 

http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/4106e1b5/lucene/suggest/src/java/org/apache/lucene/search/suggest/analyzing/SuggestStopFilterFactory.java
----------------------------------------------------------------------
diff --git a/lucene/suggest/src/java/org/apache/lucene/search/suggest/analyzing/SuggestStopFilterFactory.java b/lucene/suggest/src/java/org/apache/lucene/search/suggest/analyzing/SuggestStopFilterFactory.java
index 3e222bc..166d80d 100644
--- a/lucene/suggest/src/java/org/apache/lucene/search/suggest/analyzing/SuggestStopFilterFactory.java
+++ b/lucene/suggest/src/java/org/apache/lucene/search/suggest/analyzing/SuggestStopFilterFactory.java
@@ -60,7 +60,7 @@ import org.apache.lucene.analysis.util.TokenFilterFactory;
  * <ul>
  *  <li><code>wordset</code> - This is the default format, which supports one word per 
  *      line (including any intra-word whitespace) and allows whole line comments 
- *      begining with the "#" character.  Blank lines are ignored.  See 
+ *      beginning with the "#" character.  Blank lines are ignored.  See 
  *      {@link WordlistLoader#getLines WordlistLoader.getLines} for details.
  *  </li>
  *  <li><code>snowball</code> - This format allows for multiple words specified on each 

http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/4106e1b5/solr/core/src/java/org/apache/solr/update/SolrIndexConfig.java
----------------------------------------------------------------------
diff --git a/solr/core/src/java/org/apache/solr/update/SolrIndexConfig.java b/solr/core/src/java/org/apache/solr/update/SolrIndexConfig.java
index d484e85..26b9839 100644
--- a/solr/core/src/java/org/apache/solr/update/SolrIndexConfig.java
+++ b/solr/core/src/java/org/apache/solr/update/SolrIndexConfig.java
@@ -191,7 +191,7 @@ public class SolrIndexConfig implements MapSerializable {
     }
     mergedSegmentWarmerInfo = getPluginInfo(prefix + "/mergedSegmentWarmer", solrConfig, def.mergedSegmentWarmerInfo);
 
-    assertWarnOrFail("Begining with Solr 5.0, <checkIntegrityAtMerge> option is no longer supported and should be removed from solrconfig.xml (these integrity checks are now automatic)",
+    assertWarnOrFail("Beginning with Solr 5.0, <checkIntegrityAtMerge> option is no longer supported and should be removed from solrconfig.xml (these integrity checks are now automatic)",
         (null == solrConfig.getNode(prefix + "/checkIntegrityAtMerge", false)),
         true);
   }

http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/4106e1b5/solr/core/src/java/org/apache/solr/update/processor/DocExpirationUpdateProcessorFactory.java
----------------------------------------------------------------------
diff --git a/solr/core/src/java/org/apache/solr/update/processor/DocExpirationUpdateProcessorFactory.java b/solr/core/src/java/org/apache/solr/update/processor/DocExpirationUpdateProcessorFactory.java
index c4234cb..9c2d08d 100644
--- a/solr/core/src/java/org/apache/solr/update/processor/DocExpirationUpdateProcessorFactory.java
+++ b/solr/core/src/java/org/apache/solr/update/processor/DocExpirationUpdateProcessorFactory.java
@@ -388,7 +388,7 @@ public final class DocExpirationUpdateProcessorFactory
             // No-Op
             return;
           }
-          log.info("Begining periodic deletion of expired docs");
+          log.info("Beginning periodic deletion of expired docs");
 
           UpdateRequestProcessorChain chain = core.getUpdateProcessingChain(deleteChainName);
           UpdateRequestProcessor proc = chain.createProcessor(req, rsp);

http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/4106e1b5/solr/core/src/test-files/solr/collection1/conf/hyphenation.dtd
----------------------------------------------------------------------
diff --git a/solr/core/src/test-files/solr/collection1/conf/hyphenation.dtd b/solr/core/src/test-files/solr/collection1/conf/hyphenation.dtd
index 15bb8ca..fb3db16 100644
--- a/solr/core/src/test-files/solr/collection1/conf/hyphenation.dtd
+++ b/solr/core/src/test-files/solr/collection1/conf/hyphenation.dtd
@@ -54,7 +54,7 @@
 <!-- The hyphenation patterns, space separated. A pattern is made of 'equivalent'
      characters as described before, between any two word characters a digit
      in the range 0 to 9 may be specified. The absence of a digit is equivalent
-     to zero. The '.' character is reserved to indicate begining or ending
+     to zero. The '.' character is reserved to indicate beginning or ending
      of words. -->
 <!ELEMENT patterns (#PCDATA)>
 

http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/4106e1b5/solr/solr-ref-guide/src/filter-descriptions.adoc
----------------------------------------------------------------------
diff --git a/solr/solr-ref-guide/src/filter-descriptions.adoc b/solr/solr-ref-guide/src/filter-descriptions.adoc
index 06e0986..09dbe23 100644
--- a/solr/solr-ref-guide/src/filter-descriptions.adoc
+++ b/solr/solr-ref-guide/src/filter-descriptions.adoc
@@ -1431,7 +1431,7 @@ By contrast, a query like "`find the popsicle`" would remove "```the```" as a st
 
 `format`:: (optional; default: `wordset`) Defines how the words file will be parsed. If `words` is not specified, then `format` must not be specified. The valid values for the format option are:
 
-`wordset`:: This is the default format, which supports one word per line (including any intra-word whitespace) and allows whole line comments begining with the `#` character. Blank lines are ignored.
+`wordset`:: This is the default format, which supports one word per line (including any intra-word whitespace) and allows whole line comments beginning with the `#` character. Blank lines are ignored.
 
 `snowball`:: This format allows for multiple words specified on each line, and trailing comments may be specified using the vertical line (`|`). Blank lines are ignored.
 

http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/4106e1b5/solr/solr-ref-guide/src/other-parsers.adoc
----------------------------------------------------------------------
diff --git a/solr/solr-ref-guide/src/other-parsers.adoc b/solr/solr-ref-guide/src/other-parsers.adoc
index 54b5464..9b438f5 100644
--- a/solr/solr-ref-guide/src/other-parsers.adoc
+++ b/solr/solr-ref-guide/src/other-parsers.adoc
@@ -331,7 +331,7 @@ The graph is built according to linkages between documents based on the terms fo
 |to |The field name of matching documents to inspect to identify outgoing edges for graph traversal. Defaults to `edge_ids` .
 |from |The field name to of candidate documents to inspect to identify incoming graph edges. Defaults to `node_id` .
 |traversalFilter |An optional query that can be supplied to limit the scope of documents that are traversed.
-|maxDepth |Integer specifying how deep the breadth first search of the graph should go begining with the initial query. Defaults to -1 (unlimited)
+|maxDepth |Integer specifying how deep the breadth first search of the graph should go beginning with the initial query. Defaults to -1 (unlimited)
 |returnRoot |Boolean to indicate if the documents that matched the original query (to define the starting points for graph) should be included in the final results. Defaults to true
 |returnOnlyLeaf |Boolean that indicates if the results of the query should be filtered so that only documents with no outgoing edges are returned. Defaults to false
 |useAutn |Boolean that indicates if an Automatons should be compiled for each iteration of the breadth first search, which may be faster for some graphs. Defaults to false.