Skip to content

Commit 9b67430

Browse files
authored
Update current.xml (#75)
Closes GH-75
1 parent f817aa6 commit 9b67430

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

reference/array/functions/current.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@
7777
$transport = array('zu Fuß', 'Fahrrad', 'Auto', 'Flugzeug');
7878
$mode = current($transport); // $mode = 'zu Fuß';
7979
$mode = next($transport); // $mode = 'Fahrrad';
80-
$mode = current($transport); // $mode = 'Auto';
81-
$mode = prev($transport); // $mode = 'Fahrrad';
80+
$mode = current($transport); // $mode = 'Fahrrad';
81+
$mode = prev($transport); // $mode = 'zu Fuß';
8282
$mode = end($transport); // $mode = 'Flugzeug';
8383
8484
$arr = array();

0 commit comments

Comments
 (0)