Skip to content

Commit 5864b6b

Browse files
Fix merge mistake/typo
1 parent c6cf2da commit 5864b6b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

reference/docs-conceptual/learn/deep-dives/everything-about-null.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ commands you use deal with the no results and error scenarios.
485485
## Initializing to $null
486486

487487
One habit that I have picked up is initializing all my variables before I use them. You are required
488-
to do this in other languages. At the top of my function or as I enter a `foreach loop`, I define
488+
to do this in other languages. At the top of my function or as I enter a `foreach` loop, I define
489489
all the values that I'm using.
490490

491491
Here is a scenario that I want you to take a close look at. It's an example of a bug I had to chase

reference/docs-conceptual/learn/ps101/06-flow-control.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -307,8 +307,8 @@ In this chapter, you learned about the different types of loops that exist in Po
307307

308308
## Review
309309

310-
1. What is the difference between the `ForEach-Object` cmdlet and the `foreach` statement?
311-
1. What is the primary advantage of using a `while` loop instead of a `do while` or `do until` loop?
310+
1. What's the difference between the `ForEach-Object` cmdlet and the `foreach` statement?
311+
1. What's the primary advantage of using a `while` loop instead of a `do while` or `do until` loop?
312312
1. How do the `break` and `continue` statements differ?
313313

314314
## References

0 commit comments

Comments
 (0)