Skip to content

Commit

Permalink
fix: RedisLiterals.PlusSymbol typo (#2612)
Browse files Browse the repository at this point in the history
  • Loading branch information
0o001 authored Dec 8, 2023
1 parent 510b5e2 commit 76f5205
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/StackExchange.Redis/RedisDatabase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3449,7 +3449,7 @@ private static RedisValue GetLexRange(RedisValue value, Exclude exclude, bool is
{
if (value.IsNull)
{
return isStart ? RedisLiterals.MinusSymbol : RedisLiterals.PlusSumbol;
return isStart ? RedisLiterals.MinusSymbol : RedisLiterals.PlusSymbol;
}
byte[] orig = value!;

Expand Down
2 changes: 1 addition & 1 deletion src/StackExchange.Redis/RedisLiterals.cs
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ public static readonly RedisValue
sync = "sync",

MinusSymbol = "-",
PlusSumbol = "+",
PlusSymbol = "+",
Wildcard = "*",

// Geo Radius/Search Literals
Expand Down

0 comments on commit 76f5205

Please sign in to comment.