Skip to content

Commit 09ec193

Browse files
authored
Merge pull request #118 from C-Bam/patch-1
use lowercase `foreach` keyword, not ForEach verb
2 parents d61c67d + d4420eb commit 09ec193

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)