Skip to content

Commit d4420eb

Browse files
authored
Update Readability.md
ForEach to foreach. I just saw that :)
1 parent f95e4eb commit d4420eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Style-Guide/Readability.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Continuing in that vein, understand that the following are basically guidelines
2626
First, format your code properly. The convention is to indent within constructs, to make it clearer what "belongs to" the construct.
2727

2828
```PowerShell
29-
ForEach ($computer in $computers) {
29+
foreach ($computer in $computers) {
3030
Do-This
3131
Get-Those
3232
}

0 commit comments

Comments
 (0)