From d0478bc5097d61ed47d6c17426d58320ccf316ba Mon Sep 17 00:00:00 2001 From: Aaron <69273634+aaron-congo@users.noreply.github.com> Date: Fri, 24 May 2024 16:45:55 -0700 Subject: [PATCH] Apply suggestions from code review --- .../src/main/java/glide/api/commands/GenericBaseCommands.java | 4 ++-- .../src/main/java/glide/api/models/BaseTransaction.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/java/client/src/main/java/glide/api/commands/GenericBaseCommands.java b/java/client/src/main/java/glide/api/commands/GenericBaseCommands.java index e6f8e59fcc..c052ee4a45 100644 --- a/java/client/src/main/java/glide/api/commands/GenericBaseCommands.java +++ b/java/client/src/main/java/glide/api/commands/GenericBaseCommands.java @@ -285,7 +285,7 @@ CompletableFuture pexpireAt( * * @since Redis 7.0 and above. * @see redis.io for details. - * @param key The key to return its expiration. + * @param key The key to determine the expiration value of. * @return The expiration Unix timestamp in seconds. -2 if key does not * exist, or -1 if key exists but has no associated expiration. * @example @@ -302,7 +302,7 @@ CompletableFuture pexpireAt( * * @since Redis 7.0 and above. * @see redis.io for details. - * @param key The key to return its expiration. + * @param key The key to determine the expiration value of. * @return The expiration Unix timestamp in milliseconds. -2 if key does * not exist, or -1 if key exists but has no associated expiration. * @example diff --git a/java/client/src/main/java/glide/api/models/BaseTransaction.java b/java/client/src/main/java/glide/api/models/BaseTransaction.java index bd7f85044d..414ef12723 100644 --- a/java/client/src/main/java/glide/api/models/BaseTransaction.java +++ b/java/client/src/main/java/glide/api/models/BaseTransaction.java @@ -1450,7 +1450,7 @@ public T ttl(@NonNull String key) { * * @since Redis 7.0 and above. * @see redis.io for details. - * @param key The key to return its expiration. + * @param key The key to determine the expiration value of. * @return Command response - The expiration Unix timestamp in seconds, -2 if * key does not exist, or -1 if key exists but has no * associated expiration. @@ -1466,7 +1466,7 @@ public T expiretime(@NonNull String key) { * * @since Redis 7.0 and above. * @see redis.io for details. - * @param key The key to return its expiration. + * @param key The key to determine the expiration value of. * @return Command response - The expiration Unix timestamp in milliseconds, -2 if * key * does not exist, or -1 if key exists but has no associated