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