forked from shaka-project/shaka-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
misspellings.txt
42 lines (42 loc) · 1.51 KB
/
misspellings.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# A map of a regex to the suggested replacement. The replacement can include
# capture groups from the regex and will be ignored if the replacement is the
# same as the match.
{
r'(?i)arti?fi?ci?ai?l': 'artificial',
r'(?i)bandwith': 'bandwidth',
r'(?i)cur+ent': 'current',
r"(?i)doens?'t": "doesn't",
r'(?i)droping': 'dropping',
r'(?i)ful+screen': 'fullscreen',
r'(?i)futher': 'further',
r'(?i)gene?ra?tor': 'generator',
r'(?i)(?:(in|)n*)ac+ur+ate': r'\1accurate',
r'(?i)in?ter[ai]ble': 'iterable',
r'(?i)int(er|re)p(er|re)tation': 'interpretation',
r'(?i)langauge': 'language',
r'(?i)mananger': 'manager',
r'(?i)mani?fe?st': 'manifest',
r'(?i)mil+isecond': 'millisecond',
r'(?i)oc+ur+(?!ed|ing|ence)': 'occur',
r'(?i)oc+ur+(ed|ing|ence)': r'occurr\1',
r'(?i)oc+ur+ance': 'occurrence',
r'(?i)parrent': 'parent',
r'(?i)pol+yfil+': 'polyfill',
r'(?i)propogate': 'propagate',
r'(?i)refrence': 'reference',
r'(?i)substract': 'subtract',
# Only match an "s" if it is not part of "spy".
r'(?i)suc+e(?:(?!spy)s)+': 'success',
r'(?i)suc+es+ful+(?!y)': 'successful',
r'(?i)suc+es+ful+y': 'successfully',
r'(?i)tol+[ae]r+[ae]nce': 'tolerance',
r'(?i)uncomplied': 'uncompiled',
r'(?i)udpate': 'update',
r'(?i)wether': 'whether',
r'(?i)@returns': '@return',
r'(?i)varint': 'variant',
r'(?i)asynchronus': 'asynchronous',
r'(?i)deafult': 'default',
r'(?i)evication': 'eviction',
r'(?i)immidiately': 'immediately',
}