You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ro...@apache.org on 2018/09/04 12:08:50 UTC

lucene-solr:master: Correct locations of English stopwords in MIGRATE.txt

Repository: lucene-solr
Updated Branches:
  refs/heads/master 2da53c32c -> 94776bf31


Correct locations of English stopwords in MIGRATE.txt


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

Branch: refs/heads/master
Commit: 94776bf31160ab5d9ed098fac925b0ca416b9d53
Parents: 2da53c3
Author: Alan Woodward <ro...@apache.org>
Authored: Tue Sep 4 13:08:24 2018 +0100
Committer: Alan Woodward <ro...@apache.org>
Committed: Tue Sep 4 13:08:40 2018 +0100

----------------------------------------------------------------------
 lucene/MIGRATE.txt | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/94776bf3/lucene/MIGRATE.txt
----------------------------------------------------------------------
diff --git a/lucene/MIGRATE.txt b/lucene/MIGRATE.txt
index 97ceb77..f09751e 100644
--- a/lucene/MIGRATE.txt
+++ b/lucene/MIGRATE.txt
@@ -55,12 +55,12 @@ ALWAYS_CACHE can be replaced by a UsageTrackingQueryCachingPolicy with an approp
 
 ## English stopwords are no longer removed by default in StandardAnalyzer (LUCENE_7444) ##
 
-To retain the old behaviour, pass StandardAnalyzer.ENGLISH_STOP_WORDS_SET as an argument
+To retain the old behaviour, pass EnglishAnalyzer.ENGLISH_STOP_WORDS_SET as an argument
 to the constructor
 
-## StandardAnalyzer.ENGLISH_STOP_WORD_SET has been moved ##
+## StandardAnalyzer.ENGLISH_STOP_WORDS_SET has been moved ##
 
-English stop words are now defined in EnglishAnalyzer#ENGLISH_STOP_WORD_SET in the
+English stop words are now defined in EnglishAnalyzer#ENGLISH_STOP_WORDS_SET in the
 analysis-common module
 
 ## TopDocs.maxScore removed ##