Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
aaron-congo authored May 24, 2024
1 parent 92f0d73 commit d0478bc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ CompletableFuture<Boolean> pexpireAt(
*
* @since Redis 7.0 and above.
* @see <a href="https://redis.io/commands/expiretime/">redis.io</a> for details.
* @param key The <code>key</code> to return its expiration.
* @param key The <code>key</code> to determine the expiration value of.
* @return The expiration Unix timestamp in seconds. <code>-2</code> if <code>key</code> does not
* exist, or <code>-1</code> if <code>key</code> exists but has no associated expiration.
* @example
Expand All @@ -302,7 +302,7 @@ CompletableFuture<Boolean> pexpireAt(
*
* @since Redis 7.0 and above.
* @see <a href="https://redis.io/commands/pexpiretime/">redis.io</a> for details.
* @param key The <code>key</code> to return its expiration.
* @param key The <code>key</code> to determine the expiration value of.
* @return The expiration Unix timestamp in milliseconds. <code>-2</code> if <code>key</code> does
* not exist, or <code>-1</code> if <code>key</code> exists but has no associated expiration.
* @example
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1450,7 +1450,7 @@ public T ttl(@NonNull String key) {
*
* @since Redis 7.0 and above.
* @see <a href="https://redis.io/commands/expiretime/">redis.io</a> for details.
* @param key The <code>key</code> to return its expiration.
* @param key The <code>key</code> to determine the expiration value of.
* @return Command response - The expiration Unix timestamp in seconds, <code>-2</code> if <code>
* key</code> does not exist, or <code>-1</code> if <code>key</code> exists but has no
* associated expiration.
Expand All @@ -1466,7 +1466,7 @@ public T expiretime(@NonNull String key) {
*
* @since Redis 7.0 and above.
* @see <a href="https://redis.io/commands/pexpiretime/">redis.io</a> for details.
* @param key The <code>key</code> to return its expiration.
* @param key The <code>key</code> to determine the expiration value of.
* @return Command response - The expiration Unix timestamp in milliseconds, <code>-2</code> if
* <code>key
* </code> does not exist, or <code>-1</code> if <code>key</code> exists but has no associated
Expand Down

0 comments on commit d0478bc

Please sign in to comment.