Skip to content

Commit

Permalink
fix Command Mode mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
fortrue committed Aug 19, 2018
1 parent 0635178 commit 63596e9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Command.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ Command Command::CmdPool[AvailableCommands] = {
{Setrange, "setrange", 4, 4, Write},
{Strlen, "strlen", 2, 2, Read},
{Hdel, "hdel", 3, MaxArgs, Write},
{Hexists, "hexists", 3, 3, Write},
{Hget, "hget", 3, 3, Write},
{Hexists, "hexists", 3, 3, Read},
{Hget, "hget", 3, 3, Read},
{Hgetall, "hgetall", 2, 2, Read},
{Hincrby, "hincrby", 4, 4, Write},
{Hincrbyfloat, "hincrbyfloat", 4, 4, Write},
Expand All @@ -110,7 +110,7 @@ Command Command::CmdPool[AvailableCommands] = {
{Lpop, "lpop", 2, 2, Write},
{Lpush, "lpush", 3, MaxArgs, Write},
{Lpushx, "lpushx", 3, 3, Write},
{Lrange, "lrange", 4, 4, Write},
{Lrange, "lrange", 4, 4, Read},
{Lrem, "lrem", 4, 4, Write},
{Lset, "lset", 4, 4, Write},
{Ltrim, "ltrim", 4, 4, Write},
Expand Down

0 comments on commit 63596e9

Please sign in to comment.