1
0
mirror of https://github.com/php/php-src.git synced 2026-04-27 18:23:26 +02:00

Fix typo retuns to returns

This commit is contained in:
tbpgr
2017-08-25 01:30:14 +09:00
parent cae2e49752
commit ba83338cbe
10 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -4408,7 +4408,7 @@ PHP_FUNCTION(array_flip)
/* }}} */
/* {{{ proto array array_change_key_case(array input [, int case=CASE_LOWER])
Retuns an array with all string keys lowercased [or uppercased] */
Returns an array with all string keys lowercased [or uppercased] */
PHP_FUNCTION(array_change_key_case)
{
zval *array, *entry;
@@ -3,7 +3,7 @@ Test array_change_key_case() function : usage variations - Pass different data t
--FILE--
<?php
/* Prototype : array array_change_key_case(array $input [, int $case])
* Description: Retuns an array with all string keys lowercased [or uppercased]
* Description: Returns an array with all string keys lowercased [or uppercased]
* Source code: ext/standard/array.c
*/
@@ -5,7 +5,7 @@ Test array_change_key_case() function : usage variations - Pass different data t
--FILE--
<?php
/* Prototype : array array_change_key_case(array $input [, int $case])
* Description: Retuns an array with all string keys lowercased [or uppercased]
* Description: Returns an array with all string keys lowercased [or uppercased]
* Source code: ext/standard/array.c
*/
@@ -3,7 +3,7 @@ Test array_change_key_case() function : usage variations - different data types
--FILE--
<?php
/* Prototype : array array_change_key_case(array $input [, int $case])
* Description: Retuns an array with all string keys lowercased [or uppercased]
* Description: Returns an array with all string keys lowercased [or uppercased]
* Source code: ext/standard/array.c
*/
@@ -3,7 +3,7 @@ Test array_change_key_case() function : usage variations - different int values
--FILE--
<?php
/* Prototype : array array_change_key_case(array $input [, int $case])
* Description: Retuns an array with all string keys lowercased [or uppercased]
* Description: Returns an array with all string keys lowercased [or uppercased]
* Source code: ext/standard/array.c
*/
@@ -3,7 +3,7 @@ Test array_change_key_case() function : usage variations - position of internal
--FILE--
<?php
/* Prototype : array array_change_key_case(array $input [, int $case])
* Description: Retuns an array with all string keys lowercased [or uppercased]
* Description: Returns an array with all string keys lowercased [or uppercased]
* Source code: ext/standard/array.c
*/
@@ -3,7 +3,7 @@ Test array_change_key_case() function : usage variations - multidimensional arra
--FILE--
<?php
/* Prototype : array array_change_key_case(array $input [, int $case])
* Description: Retuns an array with all string keys lowercased [or uppercased]
* Description: Returns an array with all string keys lowercased [or uppercased]
* Source code: ext/standard/array.c
*/
@@ -3,7 +3,7 @@ Test array_change_key_case() function : usage variations - referenced variables
--FILE--
<?php
/* Prototype : array array_change_key_case(array $input [, int $case])
* Description: Retuns an array with all string keys lowercased [or uppercased]
* Description: Returns an array with all string keys lowercased [or uppercased]
* Source code: ext/standard/array.c
*/
+1 -1
View File
@@ -528,7 +528,7 @@ function delete_links($file_path,
corresponding next 13 values of the same stat for equality
$stat = stat array
Retuns: true when all of them match, false otherwise
Returns: true when all of them match, false otherwise
*/
function compare_self_stat( array $stat )
{
@@ -96,7 +96,7 @@ $scalars = array(
$heredoc_empty_string
);
/* loop to check that strval() recognizes different
scalar values and retuns the string conversion of same */
scalar values and returns the string conversion of same */
$loop_counter = 1;
foreach ($scalars as $scalar ) {
echo "-- Iteration $loop_counter --\n"; $loop_counter++;