aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat_web/search.py
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2021-11-24 15:45:33 -0800
committerBryan Newbold <bnewbold@robocracy.org>2021-11-24 15:45:33 -0800
commit5d3e62f757e968d28e90bdc4f0abe2ee07a09f3f (patch)
treecd0c96aad17b6f823a145cccc82316dce5aaae6f /python/fatcat_web/search.py
parente58d5760b8d51d4e4085ac9ae06364b461d11ce0 (diff)
downloadfatcat-5d3e62f757e968d28e90bdc4f0abe2ee07a09f3f.tar.gz
fatcat-5d3e62f757e968d28e90bdc4f0abe2ee07a09f3f.zip
codespell fixes in python code (comments)
Diffstat (limited to 'python/fatcat_web/search.py')
-rw-r--r--python/fatcat_web/search.py4
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: