Skip to content

Commit 76f5205

Browse files
authored
fix: RedisLiterals.PlusSymbol typo (#2612)
1 parent 510b5e2 commit 76f5205

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/StackExchange.Redis/RedisDatabase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3449,7 +3449,7 @@ private static RedisValue GetLexRange(RedisValue value, Exclude exclude, bool is
34493449
{
34503450
if (value.IsNull)
34513451
{
3452-
return isStart ? RedisLiterals.MinusSymbol : RedisLiterals.PlusSumbol;
3452+
return isStart ? RedisLiterals.MinusSymbol : RedisLiterals.PlusSymbol;
34533453
}
34543454
byte[] orig = value!;
34553455

src/StackExchange.Redis/RedisLiterals.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ public static readonly RedisValue
168168
sync = "sync",
169169

170170
MinusSymbol = "-",
171-
PlusSumbol = "+",
171+
PlusSymbol = "+",
172172
Wildcard = "*",
173173

174174
// Geo Radius/Search Literals

0 commit comments

Comments
 (0)