From f995d5ba555b89472bdfe85c1651eff7d2a22966 Mon Sep 17 00:00:00 2001 From: Jonathan Herlin Date: Thu, 29 Jul 2021 18:54:24 +0200 Subject: [PATCH] Word was repeated in documentation Small typo in documentation --- redis/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redis/client.py b/redis/client.py index 4e4ccc69c2..99eed39df1 100755 --- a/redis/client.py +++ b/redis/client.py @@ -3317,7 +3317,7 @@ def hlen(self, name): def hset(self, name, key=None, value=None, mapping=None): """ Set ``key`` to ``value`` within hash ``name``, - ``mapping`` accepts a dict of key/value pairs that that will be + ``mapping`` accepts a dict of key/value pairs that will be added to hash ``name``. Returns the number of fields that were added. """