From bde1b8785493a943f79c131d29cb14d1fd6fb2be Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Fri, 3 Sep 2021 19:24:47 +1000 Subject: [PATCH] docs: fix simple typo, varation -> variation There is a small typo in hashes/geohash.py. Should read `variation` rather than `varation`. --- hashes/geohash.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hashes/geohash.py b/hashes/geohash.py index 67d6309..6fc0171 100644 --- a/hashes/geohash.py +++ b/hashes/geohash.py @@ -21,7 +21,7 @@ class geohash(hashtype): - # Not the actual RFC 4648 standard; a varation + # Not the actual RFC 4648 standard; a variation _base32 = '0123456789bcdefghjkmnpqrstuvwxyz' _base32_map = {} for i in range(len(_base32)):