Skip to content

Commit 0ebd872

Browse files
authored
changed files by pdets auto publish service, publishid[091d2dc5-f9ad-4d3f-8b43-b4583e1c3a6f] and do [publish].
1 parent 52b89c2 commit 0ebd872

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

learn-pr/wwl-language/csharp-do-while/includes/1-introduction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ The `do-while` and `while` statements allow us to control the flow of code execu
44

55
Suppose you want to accept and process user input. You want to continue accepting and processing input until the user presses the `q` key for "quit". You can use the `do-while` and the `while` statements to keep iterating through the logic to accept user input and process it until the user is ready to stop.
66

7-
In this module, you'll use the `do-while` statement and the `while` statement to iterate through code block. You'll understand when to choose one over the other. You'll use the `continue` statement to skip processing the remainder of code in the code block and go directly to the Boolean evaluation of the `while` statement.
7+
In this module, you use the `do-while` statement and the `while` statement to iterate through code block. You understand when to choose one over the other. You use the `continue` statement to skip processing the remainder of code in the code block and go directly to the Boolean evaluation of the `while` statement.
88

9-
By the end of this module, you will be able to confidently use the `do-while` and `while` statements to add looping logic to your application.
9+
By the end of this module, you are able to confidently use the `do-while` and `while` statements to add looping logic to your application.
1010

1111
## Learning objectives
1212

0 commit comments

Comments
 (0)