From a31507ecd0c0488e57b75da03f751abb68fa26f7 Mon Sep 17 00:00:00 2001 From: Atom Date: Sun, 30 Dec 2018 03:20:25 +0530 Subject: [PATCH] fixed some grammatical errors (#27212) --- guide/english/php/loop/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/php/loop/index.md b/guide/english/php/loop/index.md index a62dfb75ed..9fef18370e 100644 --- a/guide/english/php/loop/index.md +++ b/guide/english/php/loop/index.md @@ -90,7 +90,7 @@ while ($index >= 0) ``` # Do...While loop -Loop through a block of code one and continue loop if condition is true. +Loop through a block of code once and continue to loop if the condition is true. ## Syntax ```php