From da82fe835d68285db731fbdd33ffd752e7572cd3 Mon Sep 17 00:00:00 2001 From: Nguyen Viet Date: Sun, 21 Oct 2018 10:50:54 +0700 Subject: [PATCH] add missing semicolon (#19796) add missing semicolon --- guide/english/php/array/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/english/php/array/index.md b/guide/english/php/array/index.md index 84a6290b41..b5f9b041cb 100644 --- a/guide/english/php/array/index.md +++ b/guide/english/php/array/index.md @@ -48,7 +48,7 @@ For instance: $bikes = ['Suzuki', 'BMW', 'Yamaha']; -echo 'I like '. $bikes[0] +echo 'I like '. $bikes[0]; ``` Would produce the following output: @@ -67,7 +67,7 @@ $bikes = [ 'not my favorite' => 'Yamaha' ]; -echo 'I like '. $bikes['not my favorite'] +echo 'I like '. $bikes['not my favorite']; ``` Would produce the following output: