add missing semicolon (#19796)

add missing semicolon
This commit is contained in:
Nguyen Viet
2018-10-21 10:50:54 +07:00
committed by Tom
parent f4eb911659
commit da82fe835d

View File

@ -48,7 +48,7 @@ For instance:
$bikes = ['Suzuki', 'BMW', 'Yamaha']; $bikes = ['Suzuki', 'BMW', 'Yamaha'];
echo 'I like '. $bikes[0] echo 'I like '. $bikes[0];
``` ```
Would produce the following output: Would produce the following output:
@ -67,7 +67,7 @@ $bikes = [
'not my favorite' => 'Yamaha' 'not my favorite' => 'Yamaha'
]; ];
echo 'I like '. $bikes['not my favorite'] echo 'I like '. $bikes['not my favorite'];
``` ```
Would produce the following output: Would produce the following output: