Skip to content

Commit 3f0bae3

Browse files
authored
changed files by pdets auto publish service, publishid[271bd88d-2a53-49c0-924d-2bd66fc46d0c] and do [publish].
1 parent 53be6c8 commit 3f0bae3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

learn-pr/wwl-language/csharp-for/includes/2-exercise-for.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ What if we need to exit the iteration statement prematurely based on some condit
249249
250250
### Loop through each element of an array
251251
252-
A common usage for the `for` statement is to iterate through an array of elements, especially if you need some control over the manner in which the iteration happens. While the `foreach` iterates through every element of the array, the `for` statement can be tweaked to provide more customization.
252+
A common usage for the `for` statement is to iterate through an array of elements, especially if you need some control over the manner in which the iteration happens. While the `foreach` iterates through every element of the array, the `for` statement can be tweaked to provide more customizations.
253253
254254
1. Use the Visual Studio Code Editor to update your code as follows:
255255

learn-pr/wwl-language/csharp-for/includes/3-exercise-challenge-for-statements.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Code challenges will reinforce what you've learned and help you gain some confidence before continuing on.
1+
Code challenges reinforce what you've learned and help you gain some confidence before continuing on.
22

33
## FizzBuzz challenge
44

@@ -28,7 +28,7 @@ Here are the FizzBuzz rules that you need to implement in your code project:
2828
1. Write the code that implements each rule.
2929

3030
> [!IMPORTANT]
31-
> You will need to understand how to use the `%` remainder operator to determine if a number is divisible by another number evenly. We covered this in the module "Perform basic operations on numbers in C#".
31+
> You need to understand how to use the `%` remainder operator to determine if a number is divisible by another number evenly. We covered this in the module "Perform basic operations on numbers in C#".
3232
3333
1. Run your application and verify that your output meets the requirements.
3434

learn-pr/wwl-language/csharp-for/includes/4-review-solution-for-statements-challenge.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,4 +132,4 @@ The code should produce the following output from 1 to 100.
132132
If you were successful, congratulations! Continue on to the knowledge check in the next unit.
133133

134134
> [!IMPORTANT]
135-
> If you had trouble completing this challenge, maybe you should review the previous units before you continue on. All new ideas we discuss in other modules will depend on your understanding of the ideas that were presented in this module.
135+
> If you had trouble completing this challenge, maybe you should review the previous units before you continue on. All new ideas we discuss in other modules depend on your understanding of the ideas that were presented in this module.

0 commit comments

Comments
 (0)