From 7af600ab0b9d0fd35fd7514f4969fdc3ae23f941 Mon Sep 17 00:00:00 2001 From: muskaangupta15 <44131245+muskaangupta15@users.noreply.github.com> Date: Sun, 31 Mar 2019 23:59:54 +0530 Subject: [PATCH] Update index.md (#27090) --- guide/english/cplusplus/do-while-loop/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/english/cplusplus/do-while-loop/index.md b/guide/english/cplusplus/do-while-loop/index.md index f4f09d744b..55ed36da7d 100644 --- a/guide/english/cplusplus/do-while-loop/index.md +++ b/guide/english/cplusplus/do-while-loop/index.md @@ -9,7 +9,7 @@ The `do while` loop has the following form: do { // do something; -} while(expression); +} while(condition); ``` @@ -24,7 +24,7 @@ Do something first and then test if we have to continue. The result is that the ```cpp -#include +#include using namespace std; int main()