From 4fd5a773b959be858a41f9e5e9941fa4c0fe373b Mon Sep 17 00:00:00 2001 From: Vocaoson Date: Tue, 9 Apr 2019 15:42:43 +0700 Subject: [PATCH] Update while-loop content (#29108) --- guide/english/csharp/while-loop/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/csharp/while-loop/index.md b/guide/english/csharp/while-loop/index.md index 328c1281f4..8676a0646e 100644 --- a/guide/english/csharp/while-loop/index.md +++ b/guide/english/csharp/while-loop/index.md @@ -4,7 +4,7 @@ title: While Loop # While Loop -The while loop executes a block of code until a specified condition is false. Because the test of the while expression takes place before each execution of the loop, a while loop executes zero or more times. This differs from the do loop, which executes one or more times because the test of the expression takes place after the execution of the loop.1 +The while loop executes a block of code until a specified condition is false. Because the test of the while expression takes place before each execution of the loop, a while loop executes zero or more times. This differs from the do loop, which executes one or more times because the test of the expression takes place after the execution of the loop. ## Example ```csharp