From e6a125ec26a224380e8362645eac4cf6123da74b Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Sun, 5 Jan 2020 13:41:56 +1100 Subject: [PATCH] Fix simple typo: repectively -> respectively Closes #16 --- hot_redis/types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hot_redis/types.py b/hot_redis/types.py index cfe1373..aae31fd 100644 --- a/hot_redis/types.py +++ b/hot_redis/types.py @@ -708,7 +708,7 @@ class BoundedSemaphore(Queue): BoundedSemaphore's ``value`` arg maps to Queue's ``maxsize``. BoundedSemaphore's acquire/release methods maps to Queue's put/get - methods repectively, providing blocking/timeout mechanics. + methods respectively, providing blocking/timeout mechanics. """ maxsize = 1