Fix common misspellings

Wikipedia's list of common misspellings [1] has a machine-readable
version.  This patch fixes those misspellings mentioned in the list
which don't have multiple right variants (as e.g. "accension", which can
be both "accession" and "ascension"), such misspellings are left
untouched.  The list of changes was manually re-checked for false
positives and changes in imported files were dropped.

[1] https://en.wikipedia.org/wiki/Wikipedia:Lists_of_common_misspellings/For_machines

Change-Id: Ib8291d769c78059b7a2cfa894cabdee1c8e23fcf
This commit is contained in:
Martin Kletzander 2015-03-19 17:25:57 +01:00
parent a8ddaf4801
commit 5e2a23edc1
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ def split_path(path, minsegs=1, maxsegs=None, rest_with_last=False):
:param rest_with_last: If True, trailing data will be returned as part
of last segment. If False, and there is
trailing data, raises ValueError.
:returns: list of segments with a length of maxsegs (non-existant
:returns: list of segments with a length of maxsegs (non-existent
segments will return as None)
:raises: ValueError if given an invalid path
"""