Skip to content

Commit

Permalink
Merge pull request #225 from akx/fix-func-typo
Browse files Browse the repository at this point in the history
Fix SINTERSTORE wrapper name
  • Loading branch information
Markus Westerlind committed Jul 23, 2019
2 parents c615ec4 + 0530c9d commit 45abee2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ implement_commands! {
}

/// Intersect multiple sets and store the resulting set in a key.
fn sdinterstore<K: ToRedisArgs>(dstkey: K, keys: K) {
fn sinterstore<K: ToRedisArgs>(dstkey: K, keys: K) {
cmd("SINTERSTORE").arg(dstkey).arg(keys)
}

Expand Down

0 comments on commit 45abee2

Please sign in to comment.