From 6a97a4bb936c463824d18d0729952efc6db06e08 Mon Sep 17 00:00:00 2001 From: Thyago Clemente Date: Mon, 19 Nov 2018 22:35:16 +0100 Subject: [PATCH] Changed definition of "double" line comment (#22203) The correct is "multiple" line comment --- guide/english/php/php-syntax/index.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/guide/english/php/php-syntax/index.md b/guide/english/php/php-syntax/index.md index a79afa56e6..3c5e3ab20b 100644 --- a/guide/english/php/php-syntax/index.md +++ b/guide/english/php/php-syntax/index.md @@ -10,7 +10,7 @@ All PHP files are saved by the extension ` .php `. PHP scripts can be added anyw ` ` ### Print -To print any statement in PHP we use ` echo ` command. +To print any statement in PHP we use `echo` command. #### Code sample ```php @@ -47,11 +47,12 @@ To write a single line comment in PHP we put hashtag `#` or by putting `//` befo // This is also a single line comment ?> ``` -To write a double line comment we start the comment with `/*` and end with `*/`. + +To write a multiple line comment we start the comment with `/*` and end with `*/`. ```php ``` We can also comment out some parts of the code line.