From f9b2c04ef677b5d454774ae73f276c7977e60522 Mon Sep 17 00:00:00 2001 From: clach04 Date: Sun, 11 Dec 2022 10:36:14 -0800 Subject: [PATCH] Fix comment typos --- elodie/geolocation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elodie/geolocation.py b/elodie/geolocation.py index 8179870..e8783a8 100644 --- a/elodie/geolocation.py +++ b/elodie/geolocation.py @@ -147,7 +147,7 @@ def place_name(lat, lon): # Try to get cached location first db = Db() - # 3km distace radious for a match + # 3km distance radius for a match cached_place_name = db.get_location_name(lat, lon, 3000) # We check that it's a dict to coerce an upgrade of the location # db from a string location to a dictionary. See gh-160.