We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 76df52e + 088d86a commit e67a80fCopy full SHA for e67a80f
src/main/java/redis/clients/jedis/Jedis.java
@@ -1116,8 +1116,8 @@ public String lpop(final String key) {
1116
1117
/**
1118
* Atomically return and remove the first (LPOP) or last (RPOP) element of
1119
- * the list. For example if the list contains the elements "a","b","c" LPOP
1120
- * will return "a" and the list will become "b","c".
+ * the list. For example if the list contains the elements "a","b","c" RPOP
+ * will return "c" and the list will become "a","b".
1121
* <p>
1122
* If the key does not exist or the list is already empty the special value
1123
* 'nil' is returned.
0 commit comments