Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit 36951d5

Browse files
committed
prevent wrapping
1 parent 7c6241a commit 36951d5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ These new operations are available as a 1:1 mapping with redis-server on `IRedis
1414
public interface IRedisNativeClient
1515
{
1616
...
17-
byte[][] ZRangeByLex(string setId, string min, string max, int? skip = null, int? take = null);
17+
byte[][] ZRangeByLex(string setId, string min, string max, int? skip=null, int? take=null);
1818
long ZLexCount(string setId, string min, string max);
1919
long ZRemRangeByLex(string setId, string min, string max);
2020
}
@@ -26,7 +26,7 @@ And the more user-friendly APIs under `IRedisClient`:
2626
public interface IRedisClient
2727
{
2828
...
29-
List<string> SearchSortedSet(string setId, string start=null, string end=null, int? skip=null, int? take=null);
29+
List<string> SearchSortedSet(string setId, string start=null, string end=null);
3030
long SearchSortedSetCount(string setId, string start=null, string end=null);
3131
long RemoveRangeFromSortedSetBySearch(string setId, string start=null, string end=null);
3232
}

0 commit comments

Comments
 (0)