From 3cea4a5b3ade1521b1514c3832c2d030503bcede Mon Sep 17 00:00:00 2001 From: Hajrudin Date: Fri, 26 Oct 2018 18:56:38 +0200 Subject: [PATCH] Removed unnecessary repeated word (#19995) --- guide/english/php/basic-syntax/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/php/basic-syntax/index.md b/guide/english/php/basic-syntax/index.md index 29ee31cdc78..71471b5f097 100644 --- a/guide/english/php/basic-syntax/index.md +++ b/guide/english/php/basic-syntax/index.md @@ -65,7 +65,7 @@ echo $x; In PHP, all keywords (e.g. if, else, while, echo, etc.), classes, functions, and user-defined functions are NOT case-sensitive. -In the example below, all three echo statements below are legal (and equal): +In the example below, all three echo statements are legal (and equal): ````