From 00aa265b5b30c6d9181306c8de2bd21611815f58 Mon Sep 17 00:00:00 2001 From: Faheel Ahmad Date: Thu, 1 Nov 2018 12:28:57 +0530 Subject: Add missing space --- redis/client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/redis/client.py b/redis/client.py index 45f1ff0..df67955 100755 --- a/redis/client.py +++ b/redis/client.py @@ -2525,14 +2525,14 @@ class StrictRedis(object): def geohash(self, name, *values): """ Return the geo hash string for each item of ``values`` members of - the specified key identified by the ``name``argument. + the specified key identified by the ``name`` argument. """ return self.execute_command('GEOHASH', name, *values) def geopos(self, name, *values): """ Return the positions of each item of ``values`` as members of - the specified key identified by the ``name``argument. Each position + the specified key identified by the ``name`` argument. Each position is represented by the pairs lon and lat. """ return self.execute_command('GEOPOS', name, *values) -- cgit v1.2.1