Skip to content

Commit 003d9ba

Browse files
hgsgtkcmb69
authored andcommitted
Fix typo 'pices' in strings/join_basic.phpt
Closes GH-6519.
1 parent c18b1ae commit 003d9ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/standard/tests/strings/join_basic.phpt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ $glue = ", "; // multiple car as glue
1616
$pieces = array("Red", "Green", "Blue", "Black", "White");
1717
var_dump( join($glue, $pieces) );
1818

19-
// pices as associative array (numeric values)
19+
// pieces as associative array (numeric values)
2020
$pieces = array("Hour" => 10, "Minute" => 20, "Second" => 40);
2121
$glue = ':';
2222
var_dump( join($glue, $pieces) );
2323

24-
// pices as associative array (string/numeric values)
24+
// pieces as associative array (string/numeric values)
2525
$pieces = array("Day" => 'Friday', "Month" => "September", "Year" => 2007);
2626
$glue = '/';
2727
var_dump( join($glue, $pieces) );

0 commit comments

Comments
 (0)