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 2626import org .springframework .lang .Nullable ;
2727
2828/**
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 .
3030 *
3131 * @author Christoph Strobl
3232 * @see 2.2
Original file line number Diff line number Diff line change 2222import org .springframework .lang .Nullable ;
2323
2424/**
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 .
2626 *
2727 * @author Christoph Strobl
2828 * @see 2.2
Original file line number Diff line number Diff line change 2828import org .springframework .util .Assert ;
2929
3030/**
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 .
3232 *
3333 * @param <K> the field type of the backing map.
3434 * @param <V> the value type of the backing map.
Original file line number Diff line number Diff line change 1818import java .util .Map ;
1919
2020/**
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 .
2222 *
2323 * @author Christoph Strobl
2424 * @since 2.2
Original file line number Diff line number Diff line change 3434class LettuceReactiveClusterStringCommandsIntegrationTests extends LettuceReactiveClusterTestSupport {
3535
3636 @ Test // DATAREDIS-525
37- void mSetNXShouldAddMultipleKeyValueParisWhenMappedToSameSlot () {
37+ void mSetNXShouldAddMultipleKeyValuePairsWhenMappedToSameSlot () {
3838
3939 Map <ByteBuffer , ByteBuffer > map = new LinkedHashMap <>();
4040 map .put (SAME_SLOT_KEY_1_BBUFFER , VALUE_1_BBUFFER );
@@ -47,7 +47,7 @@ void mSetNXShouldAddMultipleKeyValueParisWhenMappedToSameSlot() {
4747 }
4848
4949 @ Test // DATAREDIS-525
50- void mSetNXShouldNotAddMultipleKeyValueParisWhenAlreadyExitAndMapToSameSlot () {
50+ void mSetNXShouldNotAddMultipleKeyValuePairsWhenAlreadyExitAndMapToSameSlot () {
5151
5252 nativeCommands .set (SAME_SLOT_KEY_2 , VALUE_2 );
5353
You can’t perform that action at this time.
0 commit comments