Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix inaccurate docstring for unwatch() (#3424)
The 'unwatch()' method of the Redis client, as currently documented, says that it unwatches the value at key "name", but it does not actually take any arguments ("name" or otherwise). According to the latest Redis documentation at the given URL for the UNWATCH command, this command unwatches all previously watched keys for the current transaction. Modified docstring to reflect that this method does not take any arguments and instead (presumably) unwatches all previously watched keys.
- Loading branch information