From 08cb91afc55f69a85b0be511b6cd5f9b1573fcfd Mon Sep 17 00:00:00 2001 From: despare Date: Thu, 21 Mar 2019 15:13:41 +0800 Subject: [PATCH] added when while loop is used (#34128) --- guide/english/cplusplus/while-loop/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/cplusplus/while-loop/index.md b/guide/english/cplusplus/while-loop/index.md index 17a3d6d23b..cf18f9eb93 100644 --- a/guide/english/cplusplus/while-loop/index.md +++ b/guide/english/cplusplus/while-loop/index.md @@ -2,7 +2,7 @@ title: While-loop --- -A while loop statement repeatedly executes a target statement as long as a given condition is true. +A while loop statement repeatedly executes a target statement as long as a given condition is true. It is often used when the number of iterations is unknown. Syntax: ```C++