From 6aabba3ef4e3cc18cb73b8d319736e6d84249af4 Mon Sep 17 00:00:00 2001 From: jonathanl-bq <72158117+jonathanl-bq@users.noreply.github.com> Date: Fri, 16 Feb 2024 22:08:13 -0800 Subject: [PATCH] Update java/client/src/main/java/glide/api/commands/SortedSetCommands.java Co-authored-by: Andrew Carbonetto --- .../src/main/java/glide/api/commands/SortedSetCommands.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/client/src/main/java/glide/api/commands/SortedSetCommands.java b/java/client/src/main/java/glide/api/commands/SortedSetCommands.java index fb6a8f3ed9..0b01ef4135 100644 --- a/java/client/src/main/java/glide/api/commands/SortedSetCommands.java +++ b/java/client/src/main/java/glide/api/commands/SortedSetCommands.java @@ -69,7 +69,7 @@ CompletableFuture zaddIncr( * @param members - A list of members to remove from the sorted set. * @returns The number of members that were removed from the sorted set, not including * non-existing members. If key does not exist, it is treated as an empty sorted set, and - * this command returns 0. If `key` holds a value that is not a sorted set, an error is + * this command returns 0. If key holds a value that is not a sorted set, an error is * returned. */ CompletableFuture zrem(String key, String[] members);