diff --git a/language/types/array.xml b/language/types/array.xml index 9f5423ac4e..b1dacc37af 100644 --- a/language/types/array.xml +++ b/language/types/array.xml @@ -201,7 +201,7 @@ array(4) { ]]> @@ -215,7 +215,7 @@ array(4) { [1]=> string(3) "bar" [2]=> - string(5) "hallo" + string(5) "hello" [3]=> string(5) "world" } @@ -306,7 +306,7 @@ string(3) "foo" Both square brackets and curly braces can be used interchangeably - for accessing array elements (e.g. $array[42] and $array{42} will + for accessing array elements (e.g. $array[42] and $array{42} will both do the same thing in the example above).