Skip to content

Commit ac09693

Browse files
authored
Remove only existance of 'null' from documentation (#2348)
1 parent 5782eec commit ac09693

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/main/java/redis/clients/jedis/Jedis.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,8 +191,9 @@ public String set(final String key, final String value, final SetParams params)
191191
}
192192

193193
/**
194-
* Get the value of the specified key. If the key does not exist null is returned. If the value
195-
* stored at key is not a string an error is returned because GET can only handle string values.
194+
* Get the value of the specified key. If the key does not exist the special value 'nil' is
195+
* returned. If the value stored at key is not a string an error is returned because GET can only
196+
* handle string values.
196197
* <p>
197198
* Time complexity: O(1)
198199
* @param key

0 commit comments

Comments
 (0)