Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Java: misc fixes #1256

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ public interface ConnectionManagementClusterCommands {
* @param route Specifies the routing configuration for the command. The client will route the
* command to the nodes defined by <code>route</code>.
* @return The provided <code>message</code>.
* @examples
* @example
* <pre>{@code
* // Command sent to a single random node via RANDOM route, expecting a SingleValue result.
* String message = client.echo("GLIDE", RANDOM).get().getSingleValue();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ CompletableFuture<Map<String, Double>> zrangeWithScores(
/**
* Returns the rank of <code>member</code> in the sorted set stored at <code>key</code>, with
* scores ordered from low to high.<br>
* To get the rank of <code>member</code> with it's score, see <code>zrankWithScore</code>.
* To get the rank of <code>member</code> with its score, see {@link #zrankWithScore}.
*
* @see <a href="https://redis.io/commands/zrank/">redis.io</a> for more details.
* @param key The key of the sorted set.
Expand All @@ -436,7 +436,7 @@ CompletableFuture<Map<String, Double>> zrangeWithScores(
CompletableFuture<Long> zrank(String key, String member);

/**
* Returns the rank of <code>member</code> in the sorted set stored at <code>key</code> with it's
* Returns the rank of <code>member</code> in the sorted set stored at <code>key</code> with its
* score, where scores are ordered from the lowest to highest.
*
* @see <a href="https://redis.io/commands/zrank/">redis.io</a> for more details.
Expand Down
Loading
Loading