diff options
author | Edward Betts <edward@4angle.com> | 2020-03-27 21:25:54 +0000 |
---|---|---|
committer | Edward Betts <edward@4angle.com> | 2020-03-27 21:25:54 +0000 |
commit | 94710b2803780ab16fb30b79010f8e27cf115512 (patch) | |
tree | 000f8ed47d8062261c78d47ab237350eb75257e3 /python/fatcat_web | |
parent | 3ff5c1f371fb6764df415e816884e1be0577088c (diff) | |
download | fatcat-94710b2803780ab16fb30b79010f8e27cf115512.tar.gz fatcat-94710b2803780ab16fb30b79010f8e27cf115512.zip |
Correct spelling mistakes
Diffstat (limited to 'python/fatcat_web')
-rw-r--r-- | python/fatcat_web/__init__.py | 2 | ||||
-rw-r--r-- | python/fatcat_web/entity_helpers.py | 2 | ||||
-rw-r--r-- | python/fatcat_web/search.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/python/fatcat_web/__init__.py b/python/fatcat_web/__init__.py index 50757858..56a2e020 100644 --- a/python/fatcat_web/__init__.py +++ b/python/fatcat_web/__init__.py @@ -61,7 +61,7 @@ else: print("No privileged token found") priv_api = None -# TODO: refactor integration so this doesn't always need to be definied. If +# TODO: refactor integration so this doesn't always need to be defined. If # key/secret are empty, library will not init; if init is skipped, get # undefined errors elsewhere. mwoauth = MWOAuth( diff --git a/python/fatcat_web/entity_helpers.py b/python/fatcat_web/entity_helpers.py index 591dda80..520bb832 100644 --- a/python/fatcat_web/entity_helpers.py +++ b/python/fatcat_web/entity_helpers.py @@ -164,7 +164,7 @@ def generic_get_editgroup_entity(editgroup, entity_type, ident): edit = e break if not revision_id: - # couldn't find relevent edit in this editgroup + # couldn't find relevant edit in this editgroup abort(404) entity = generic_get_entity_revision(entity_type, revision_id) diff --git a/python/fatcat_web/search.py b/python/fatcat_web/search.py index 6b2b9cc1..c1246d22 100644 --- a/python/fatcat_web/search.py +++ b/python/fatcat_web/search.py @@ -299,7 +299,7 @@ def get_elastic_container_histogram(ident): """ Fetches a stacked histogram of - Filters to the past 500 years (at most), or about 1000 vaules. + Filters to the past 500 years (at most), or about 1000 values. Returns a list of tuples: (year, in_ia, count) |