Correct spelling mistakes

This commit is contained in:
Edward Betts
2022-02-19 09:46:49 +00:00
parent bf7c46c3cd
commit d6e0e1fee3
69 changed files with 87 additions and 87 deletions

View File

@@ -328,7 +328,7 @@ def _sliding_triplets(tokens):
def _analyze_tokens(tokens):
"""Analize each token and find out compatible types for it."""
"""Analyze each token and find out compatible types for it."""
for token, prev, nxt in _sliding_triplets(tokens):
token.compatible_types = tuple([t for t in DATE_ELEMENTS if t[2](token.val, prev, nxt)])

View File

@@ -97,12 +97,12 @@ for typ in six.string_types:
SCHEMA = [{
'name': 'includes',
'label': 'Includes (list of tables seperated by semicolon)',
'label': 'Includes (list of tables separated by semicolon)',
'type': 'string',
'visible': True
}, {
'name': 'excludes',
'label': 'Excludes (list of tables seperated by semicolon)',
'label': 'Excludes (list of tables separated by semicolon)',
'type': 'string',
'visible': True
}]