Skip to content

Fix typo in Javadoc #2417

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

Merged
merged 1 commit into from
Sep 30, 2022
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 @@ -26,7 +26,7 @@
import org.springframework.lang.Nullable;

/**
* A {@link Record} within the stream backed by a collection of binary {@literal field/value} paris.
* A {@link Record} within the stream backed by a collection of binary {@literal field/value} pairs.
*
* @author Christoph Strobl
* @see 2.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import org.springframework.lang.Nullable;

/**
* A {@link Record} within the stream backed by a collection of binary {@literal field/value} paris.
* A {@link Record} within the stream backed by a collection of binary {@literal field/value} pairs.
*
* @author Christoph Strobl
* @see 2.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
import org.springframework.util.Assert;

/**
* A {@link Record} within the stream backed by a collection of {@literal field/value} paris.
* A {@link Record} within the stream backed by a collection of {@literal field/value} pairs.
*
* @param <K> the field type of the backing map.
* @param <V> the value type of the backing map.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import java.util.Map;

/**
* A {@link Record} within the stream backed by a collection of {@link String} {@literal field/value} paris.
* A {@link Record} within the stream backed by a collection of {@link String} {@literal field/value} pairs.
*
* @author Christoph Strobl
* @since 2.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
class LettuceReactiveClusterStringCommandsIntegrationTests extends LettuceReactiveClusterTestSupport {

@Test // DATAREDIS-525
void mSetNXShouldAddMultipleKeyValueParisWhenMappedToSameSlot() {
void mSetNXShouldAddMultipleKeyValuePairsWhenMappedToSameSlot() {

Map<ByteBuffer, ByteBuffer> map = new LinkedHashMap<>();
map.put(SAME_SLOT_KEY_1_BBUFFER, VALUE_1_BBUFFER);
Expand All @@ -47,7 +47,7 @@ void mSetNXShouldAddMultipleKeyValueParisWhenMappedToSameSlot() {
}

@Test // DATAREDIS-525
void mSetNXShouldNotAddMultipleKeyValueParisWhenAlreadyExitAndMapToSameSlot() {
void mSetNXShouldNotAddMultipleKeyValuePairsWhenAlreadyExitAndMapToSameSlot() {

nativeCommands.set(SAME_SLOT_KEY_2, VALUE_2);

Expand Down