mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Merge branch 'stable'
This commit is contained in:
commit
0cd0f82492
3
CHANGES
3
CHANGES
@ -166,6 +166,9 @@ Features added
|
||||
Bugs fixed
|
||||
----------
|
||||
|
||||
* #1922: html search: Upper characters problem in French
|
||||
|
||||
|
||||
Testing
|
||||
--------
|
||||
|
||||
|
@ -207,4 +207,4 @@ class SearchFrench(SearchLanguage):
|
||||
self.stemmer = snowballstemmer.stemmer('french')
|
||||
|
||||
def stem(self, word):
|
||||
return self.stemmer.stemWord(word)
|
||||
return self.stemmer.stemWord(word.lower())
|
||||
|
Loading…
Reference in New Issue
Block a user