fix small typo in exists command

This commit is contained in:
Jonathan Leibiusky
2011-05-11 13:32:14 -03:00
parent b13c964500
commit 0885681f63

View File

@@ -82,7 +82,7 @@ public class Jedis extends BinaryJedis implements JedisCommands {
* Time complexity: O(1)
*
* @param key
* @return Integer reply, "0" if the key exists, otherwise "1"
* @return Boolean reply, true if the key exists, otherwise false
*/
public Boolean exists(final String key) {
checkIsInMulti();