Browse Source

[dataRedis] fixed typo

Exilon 3 years ago
parent
commit
c1c5176b3c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Quick.Data.Redis.pas

+ 1 - 1
Quick.Data.Redis.pas

@@ -638,7 +638,7 @@ begin
   rediscmd := TRedisCommand.Create('LTRIM')
                .AddArgument(aKey)
                .AddArgument(aFirstElement)
-               .AddArgument(fMaxSize);
+               .AddArgument(aMaxSize);
   Result := Command(rediscmd.ToCommand).IsDone;
 end;