@@ -970,7 +970,7 @@ _**Description**_:  Scan the keyspace for keys
970970##### * Parameters*  
971971* LONG (reference)* :  Iterator, initialized to NULL
972972* STRING, Optional* :  Pattern to match
973- * LONG, Optional) * : Count of keys per iteration (only a suggestion to Redis)
973+ * LONG, Optional* : Count of keys per iteration (only a suggestion to Redis)
974974
975975##### * Return value*  
976976* Array, boolean* :  This function will return an array of keys or FALSE if there are no more keys
@@ -2445,7 +2445,7 @@ _**Description**_: Scan a set for members
24452445* pattern* : String, optional pattern to match against
24462446* count* : How many members to return at a time (Redis might return a different amount)
24472447
2448- ##### * Retur  value*  
2448+ ##### * Return  value*  
24492449* Array, boolean* : PHPRedis will return an array of keys or FALSE when we're done iterating
24502450
24512451##### * Example*  
@@ -2466,7 +2466,7 @@ while(($arr_mems = $redis->sscan('set', $it, "*pattern*"))!==FALSE) {
24662466            echo "Member found: $str_mem\n"; 
24672467        } 
24682468    } else { 
2469-         echo "No members in this iteration, iterator value: $it\n") ; 
2469+         echo "No members in this iteration, iterator value: $it\n"; 
24702470    } 
24712471} 
24722472~~~ 
@@ -2838,7 +2838,7 @@ _**Description**_: Scan a sorted set for members, with optional pattern and coun
28382838* count* : How many keys to return per iteration (Redis might return a different number)
28392839
28402840##### * Return value*  
2841- * Array, boolean*  PHPReids  will return matching keys from Redis, or FALSE when iteration is complete
2841+ * Array, boolean*  PHPRedis  will return matching keys from Redis, or FALSE when iteration is complete
28422842
28432843##### * Example*  
28442844~~~ 
@@ -3195,7 +3195,7 @@ None
31953195
31963196### GetTimeout  
31973197----- 
3198- _ ** Description** _ :  Get the (write) timeout in use for phpreids 
3198+ _ ** Description** _ :  Get the (write) timeout in use for phpredis 
31993199
32003200##### * Parameters*  
32013201None  
0 commit comments