From 50d662366ffb8908d7cea3774f23718a551ba0b2 Mon Sep 17 00:00:00 2001 From: Torben Wilson Date: Wed, 18 Jun 2003 18:19:07 +0000 Subject: [PATCH] Fixed a couple more typos. Fixed one bad example. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@132359 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/types.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/language/types.xml b/language/types.xml index d02b43d302..96d93d6813 100644 --- a/language/types.xml +++ b/language/types.xml @@ -1,5 +1,5 @@ - + Types @@ -1862,7 +1862,7 @@ Array Arrays are ordered. You can also change the order using various - sorting-functions. See the array + sorting functions. See the array functions section for more information. You can count the number of items in an array using the count function. @@ -1927,7 +1927,7 @@ $juices["apple"]["green"] = "good"; - You should be aware, that array assignment always involves + You should be aware that array assignment always involves value copying. You need to use the reference operator to copy an array by reference. @@ -1937,7 +1937,7 @@ $juices["apple"]["green"] = "good"; $arr1 = array(2, 3); $arr2 = $arr1; $arr2[] = 4; // $arr2 is changed, - // $arr1 is still array(2,3) + // $arr1 is still array(2, 3) $arr3 = &$arr1; $arr3[] = 4; // now $arr1 and $arr3 are the same