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