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

Fix duplicate word occurrences #2307

Merged
merged 1 commit into from
Feb 14, 2023
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
2 changes: 1 addition & 1 deletion src/main/java/io/lettuce/core/ConcurrentLruCache.java
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ public int size() {
}

/**
* Return the the maximum number of entries in the cache (0 indicates no caching, always generating a new value).
* Return the maximum number of entries in the cache (0 indicates no caching, always generating a new value).
*
* @see #size()
*/
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/lettuce/core/SocketOptions.java
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ private Builder() {
}

/**
* Set the the maximum number of keepalive probes TCP should send before dropping the connection. Defaults to
* Set the maximum number of keepalive probes TCP should send before dropping the connection. Defaults to
* {@code 9}. See also {@link #DEFAULT_COUNT} and {@code TCP_KEEPCNT}.
*
* @param count the maximum number of keepalive probes TCP
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/lettuce/core/metrics/MetricCollector.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public interface MetricCollector<T> {
/**
* Returns the collected/aggregated metrics.
*
* @return the the collected/aggregated metrics
* @return the collected/aggregated metrics
*/
T retrieveMetrics();

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/lettuce/core/protocol/CommandWrapper.java
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ public static <K, V, T> RedisCommand<K, V, T> unwrap(RedisCommand<K, V, T> wrapp
*
* If the receiver implements the interface then the result is the receiver or a proxy for the receiver. If the receiver is
* a wrapper and the wrapped object implements the interface then the result is the wrapped object or a proxy for the
* wrapped object. Otherwise return the the result of calling <code>unwrap</code> recursively on the wrapped object or a
* wrapped object. Otherwise return the result of calling <code>unwrap</code> recursively on the wrapped object or a
* proxy for that result. If the receiver is not a wrapper and does not implement the interface, then an {@code null} is
* returned.
*
Expand Down