@@ -970,7 +970,7 @@ _**Description**_: Scan the keyspace for keys
970
970
##### * Parameters*
971
971
* LONG (reference)* : Iterator, initialized to NULL
972
972
* 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)
974
974
975
975
##### * Return value*
976
976
* 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
2445
2445
* pattern* : String, optional pattern to match against
2446
2446
* count* : How many members to return at a time (Redis might return a different amount)
2447
2447
2448
- ##### * Retur value*
2448
+ ##### * Return value*
2449
2449
* Array, boolean* : PHPRedis will return an array of keys or FALSE when we're done iterating
2450
2450
2451
2451
##### * Example*
@@ -2466,7 +2466,7 @@ while(($arr_mems = $redis->sscan('set', $it, "*pattern*"))!==FALSE) {
2466
2466
echo "Member found: $str_mem\n";
2467
2467
}
2468
2468
} else {
2469
- echo "No members in this iteration, iterator value: $it\n") ;
2469
+ echo "No members in this iteration, iterator value: $it\n";
2470
2470
}
2471
2471
}
2472
2472
~~~
@@ -2838,7 +2838,7 @@ _**Description**_: Scan a sorted set for members, with optional pattern and coun
2838
2838
* count* : How many keys to return per iteration (Redis might return a different number)
2839
2839
2840
2840
##### * 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
2842
2842
2843
2843
##### * Example*
2844
2844
~~~
@@ -3195,7 +3195,7 @@ None
3195
3195
3196
3196
### GetTimeout
3197
3197
-----
3198
- _ ** Description** _ : Get the (write) timeout in use for phpreids
3198
+ _ ** Description** _ : Get the (write) timeout in use for phpredis
3199
3199
3200
3200
##### * Parameters*
3201
3201
None
0 commit comments