Skip to content

Commit

Permalink
Fix Del command case.
Browse files Browse the repository at this point in the history
  • Loading branch information
vmihailenco committed Jul 8, 2016
1 parent 4d018d8 commit 65a64fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ func (c *statefulCmdable) Select(index int) *StatusCmd {

func (c *cmdable) Del(keys ...string) *IntCmd {
args := make([]interface{}, 1+len(keys))
args[0] = "DEL"
args[0] = "del"
for i, key := range keys {
args[1+i] = key
}
Expand Down

0 comments on commit 65a64fe

Please sign in to comment.