Skip to content

Commit

Permalink
Fix spelling in docstring (#1272)
Browse files Browse the repository at this point in the history
  • Loading branch information
blackrobot committed Jan 30, 2020
1 parent a77ad50 commit 09a17ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion redis/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -2265,7 +2265,7 @@ def srandmember(self, name, number=None):
If ``number`` is None, returns a random member of set ``name``.
If ``number`` is supplied, returns a list of ``number`` random
memebers of set ``name``. Note this is only available when running
members of set ``name``. Note this is only available when running
Redis 2.6+.
"""
args = (number is not None) and [number] or []
Expand Down

0 comments on commit 09a17ea

Please sign in to comment.