Skip to content

Commit

Permalink
Minor documentation update.
Browse files Browse the repository at this point in the history
  • Loading branch information
SanHalacogluImproving committed Apr 1, 2024
1 parent 83dcd9f commit 2a6685b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ CompletableFuture<Double> zaddIncr(
* @example
* <pre>{@code
* Map<String, Double> payload = client.zpopmax("mySortedSet", 2).get();
* assert payload.equals(Map.of('member2', 8.0, 'member3', 7.5)); // Indicates that 'member1' with a score of 10.0 has been removed from the sorted set.
* assert payload.equals(Map.of('member2', 8.0, 'member3', 7.5)); // Indicates that 'member2' with a score of 8.0 and 'member3' with a score of 7.5 have been removed from the sorted set.
* }</pre>
*/
CompletableFuture<Map<String, Double>> zpopmax(String key, long count);
Expand Down

0 comments on commit 2a6685b

Please sign in to comment.