Skip to content

Commit f013bdd

Browse files
authored
Merge pull request ukko#33 from mingrammer/master
Fix case typo (hMset => hMSet)
2 parents f1c0058 + bab11f2 commit f013bdd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Redis.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2922,11 +2922,11 @@ public function hIncrByFloat( $key, $field, $increment ) {}
29222922
* @example
29232923
* <pre>
29242924
* $redis->delete('user:1');
2925-
* $redis->hMset('user:1', array('name' => 'Joe', 'salary' => 2000));
2925+
* $redis->hMSet('user:1', array('name' => 'Joe', 'salary' => 2000));
29262926
* $redis->hIncrBy('user:1', 'salary', 100); // Joe earns 100 more now.
29272927
* </pre>
29282928
*/
2929-
public function hMset( $key, $hashKeys ) {}
2929+
public function hMSet( $key, $hashKeys ) {}
29302930

29312931
/**
29322932
* Retirieve the values associated to the specified fields in the hash.

0 commit comments

Comments
 (0)