From d6f1644922a8853131e7b5fdba7aa42ce168c555 Mon Sep 17 00:00:00 2001 From: Damien Seguy Date: Thu, 16 Apr 2009 20:12:03 +0000 Subject: [PATCH] fix spelling git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@278865 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/array/functions/array-change-key-case.xml | 6 +++--- reference/array/functions/array-diff-assoc.xml | 8 ++++---- reference/array/functions/array-diff-uassoc.xml | 10 +++++----- reference/array/functions/array-diff-ukey.xml | 4 ++-- reference/array/functions/array-diff.xml | 6 +++--- reference/array/functions/array-udiff-assoc.xml | 4 ++-- reference/array/functions/array-udiff-uassoc.xml | 4 ++-- reference/array/functions/each.xml | 4 ++-- reference/array/functions/extract.xml | 6 +++--- 9 files changed, 26 insertions(+), 26 deletions(-) diff --git a/reference/array/functions/array-change-key-case.xml b/reference/array/functions/array-change-key-case.xml index 541727fcb4..8386f33ac5 100644 --- a/reference/array/functions/array-change-key-case.xml +++ b/reference/array/functions/array-change-key-case.xml @@ -1,5 +1,5 @@ - + array_change_key_case @@ -95,8 +95,8 @@ Array If an array has indices that will be the same once run through this - function (e.g. "keY" and "kEY"), the value that is later in the array - will override other indices. + function (e.g. "keY" and "kEY"), + the value that is later in the array will override other indices. diff --git a/reference/array/functions/array-diff-assoc.xml b/reference/array/functions/array-diff-assoc.xml index 76bba2badb..ff173f511b 100644 --- a/reference/array/functions/array-diff-assoc.xml +++ b/reference/array/functions/array-diff-assoc.xml @@ -1,5 +1,5 @@ - + array_diff_assoc @@ -17,7 +17,7 @@ Compares array1 against array2 and returns the difference. Unlike array_diff the array - keys are used in the comparision. + keys are used in the comparison. @@ -79,9 +79,9 @@ <function>array_diff_assoc</function> example In this example you see the "a" => "green" - pair is present in both arrays and thus it is not in the ouput from the + pair is present in both arrays and thus it is not in the output from the function. Unlike this, the pair 0 => "red" - is in the ouput because in the second argument "red" + is in the output because in the second argument "red" has key which is 1. diff --git a/reference/array/functions/array-diff-uassoc.xml b/reference/array/functions/array-diff-uassoc.xml index 475e1eeb6e..e259b5e4fe 100644 --- a/reference/array/functions/array-diff-uassoc.xml +++ b/reference/array/functions/array-diff-uassoc.xml @@ -1,5 +1,5 @@ - + array_diff_uassoc @@ -18,11 +18,11 @@ Compares array1 against array2 and returns the difference. Unlike array_diff the array - keys are used in the comparision. + keys are used in the comparison. Unlike array_diff_assoc an user supplied callback - function is used for the indices comparision, not internal function. + function is used for the indices comparison, not internal function. @@ -96,9 +96,9 @@ <function>array_diff_uassoc</function> example The "a" => "green" - pair is present in both arrays and thus it is not in the ouput from the + pair is present in both arrays and thus it is not in the output from the function. Unlike this, the pair 0 => "red" - is in the ouput because in the second argument "red" + is in the output because in the second argument "red" has key which is 1. diff --git a/reference/array/functions/array-diff-ukey.xml b/reference/array/functions/array-diff-ukey.xml index f1fd4cbd4a..416c8400c7 100644 --- a/reference/array/functions/array-diff-ukey.xml +++ b/reference/array/functions/array-diff-ukey.xml @@ -1,5 +1,5 @@ - + array_diff_ukey @@ -23,7 +23,7 @@ Unlike array_diff_key an user supplied callback - function is used for the indices comparision, not internal function. + function is used for the indices comparison, not internal function. diff --git a/reference/array/functions/array-diff.xml b/reference/array/functions/array-diff.xml index 6c4644389d..243b6cb639 100644 --- a/reference/array/functions/array-diff.xml +++ b/reference/array/functions/array-diff.xml @@ -1,5 +1,5 @@ - + array_diff @@ -105,8 +105,8 @@ print_r($result); ]]> - Multiple occurrences in $array1 are all treated the same way. - This will output : + Multiple occurrences in $array1 are all + treated the same way. This will output : - + array_udiff_assoc @@ -133,7 +133,7 @@ Array In our example above you see the "1" => new cr(4) - pair is present in both arrays and thus it is not in the ouput from the + pair is present in both arrays and thus it is not in the output from the function. diff --git a/reference/array/functions/array-udiff-uassoc.xml b/reference/array/functions/array-udiff-uassoc.xml index da9ddaf10d..7ef1a34a31 100644 --- a/reference/array/functions/array-udiff-uassoc.xml +++ b/reference/array/functions/array-udiff-uassoc.xml @@ -1,5 +1,5 @@ - + array_udiff_uassoc @@ -148,7 +148,7 @@ Array In our example above you see the "1" => new cr(4) - pair is present in both arrays and thus it is not in the ouput from the + pair is present in both arrays and thus it is not in the output from the function. Keep in mind that you have to supply 2 callback functions. diff --git a/reference/array/functions/each.xml b/reference/array/functions/each.xml index 43967246ce..a8897dabf1 100644 --- a/reference/array/functions/each.xml +++ b/reference/array/functions/each.xml @@ -1,5 +1,5 @@ - + each @@ -153,7 +153,7 @@ c => cranberry each will also accept objects, but may return unexpected - results. Its therefore not recommeded to iterate though object properties + results. Its therefore not recommended to iterate though object properties with each. diff --git a/reference/array/functions/extract.xml b/reference/array/functions/extract.xml index a3c4bb5e1b..eca72af1a6 100644 --- a/reference/array/functions/extract.xml +++ b/reference/array/functions/extract.xml @@ -1,5 +1,5 @@ - + extract @@ -17,8 +17,8 @@ Import variables from an array into the current symbol table. - extract checks each key to see whether it has a valid - variable name. It also checks for collisions with existing variables in + Checks each key to see whether it has a valid variable name. + It also checks for collisions with existing variables in the symbol table.