Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion reference/docs-conceptual/learn/ps101/06-flow-control.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ as long as the counter variable `$i` is less than 5. It sleeps for a total of 10

### Do

There are two different `do` loops in PowerShell: `do until` and `do while`. `do until` runs until
There are two different `do` loops in PowerShell: `do until` and `do while`. `do until` runs while
the specified condition is false.

The following example is a numbers game that continues until the value you guess equals the same
Expand Down
Loading