Expect rare words to be in the extended dictionary

This commit is contained in:
Peter Newman
2020-04-19 18:58:23 +01:00
committed by GitHub
parent 58e2a2553a
commit 60f61d249f

View File

@ -40,7 +40,7 @@ _builtin_dictionaries = ( # name, desc, name, err in aspell, correction in aspe
# The aspell tests here aren't the ideal state, but the None's are realistic
# for obscure words
('clear', 'for unambiguous errors', '', False, None),
('rare', 'for rare but valid words', '_rare', None, None),
('rare', 'for rare but valid words', '_rare', True, None),
('informal', 'for informal words', '_informal', True, True),
('code', 'for words common to code and/or mathematics', '_code', None, None), # noqa: E501
('names', 'for valid proper names that might be typos', '_names', None, None), # noqa: E501