diff options
Diffstat (limited to 'python/fatcat_web/search.py')
-rw-r--r-- | python/fatcat_web/search.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/fatcat_web/search.py b/python/fatcat_web/search.py index fdfc4d80..b9994f28 100644 --- a/python/fatcat_web/search.py +++ b/python/fatcat_web/search.py @@ -161,8 +161,8 @@ def agg_to_dict(agg: Any) -> Dict[str, Any]: """ Takes a simple term aggregation result (with buckets) and returns a simple dict with keys as terms and counts as values. Includes an extra value - '_other', and by convention aggregations should be writen to have "missing" - vaules as '_unknown'. + '_other', and by convention aggregations should be written to have "missing" + values as '_unknown'. """ result = dict() for bucket in agg.buckets: |