File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed
main/java/org/springframework/data/redis/connection/stream
test/java/org/springframework/data/redis/connection/lettuce Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 26
26
import org .springframework .lang .Nullable ;
27
27
28
28
/**
29
- * A {@link Record} within the stream backed by a collection of binary {@literal field/value} paris .
29
+ * A {@link Record} within the stream backed by a collection of binary {@literal field/value} pairs .
30
30
*
31
31
* @author Christoph Strobl
32
32
* @see 2.2
Original file line number Diff line number Diff line change 22
22
import org .springframework .lang .Nullable ;
23
23
24
24
/**
25
- * A {@link Record} within the stream backed by a collection of binary {@literal field/value} paris .
25
+ * A {@link Record} within the stream backed by a collection of binary {@literal field/value} pairs .
26
26
*
27
27
* @author Christoph Strobl
28
28
* @see 2.2
Original file line number Diff line number Diff line change 28
28
import org .springframework .util .Assert ;
29
29
30
30
/**
31
- * A {@link Record} within the stream backed by a collection of {@literal field/value} paris .
31
+ * A {@link Record} within the stream backed by a collection of {@literal field/value} pairs .
32
32
*
33
33
* @param <K> the field type of the backing map.
34
34
* @param <V> the value type of the backing map.
Original file line number Diff line number Diff line change 18
18
import java .util .Map ;
19
19
20
20
/**
21
- * A {@link Record} within the stream backed by a collection of {@link String} {@literal field/value} paris .
21
+ * A {@link Record} within the stream backed by a collection of {@link String} {@literal field/value} pairs .
22
22
*
23
23
* @author Christoph Strobl
24
24
* @since 2.2
Original file line number Diff line number Diff line change 34
34
class LettuceReactiveClusterStringCommandsIntegrationTests extends LettuceReactiveClusterTestSupport {
35
35
36
36
@ Test // DATAREDIS-525
37
- void mSetNXShouldAddMultipleKeyValueParisWhenMappedToSameSlot () {
37
+ void mSetNXShouldAddMultipleKeyValuePairsWhenMappedToSameSlot () {
38
38
39
39
Map <ByteBuffer , ByteBuffer > map = new LinkedHashMap <>();
40
40
map .put (SAME_SLOT_KEY_1_BBUFFER , VALUE_1_BBUFFER );
@@ -47,7 +47,7 @@ void mSetNXShouldAddMultipleKeyValueParisWhenMappedToSameSlot() {
47
47
}
48
48
49
49
@ Test // DATAREDIS-525
50
- void mSetNXShouldNotAddMultipleKeyValueParisWhenAlreadyExitAndMapToSameSlot () {
50
+ void mSetNXShouldNotAddMultipleKeyValuePairsWhenAlreadyExitAndMapToSameSlot () {
51
51
52
52
nativeCommands .set (SAME_SLOT_KEY_2 , VALUE_2 );
53
53
You can’t perform that action at this time.
0 commit comments