Edited typos

Changed redeclaration error and added single return
This commit is contained in:
nicchap
2014-12-18 12:15:54 -05:00
parent 5a02204833
commit a1977c1b61
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ namespace Predis\Command;
* @link http://redis.io/commands/bitpos
* @author Daniele Alessandri <suppakilla@gmail.com>
*/
class StringBitCount extends Command
class StringBitPos extends Command
{
/**
* {@inheritdoc}
+1 -1
View File
@@ -75,4 +75,4 @@ class StringBitPosTest extends PredisCommandTestCase
$redis->lpush('key', 'list');
$redis->bitpos('key');
}
}
}