From 2b1b80fb2083cd2ac4cd0441f26a4411ae913f6d Mon Sep 17 00:00:00 2001 From: Pete DiSalvo Date: Wed, 6 Dec 2017 08:37:31 -0600 Subject: [PATCH] Fix typo in syntax description --- reference/5.1/Microsoft.PowerShell.Core/About/about_For.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reference/5.1/Microsoft.PowerShell.Core/About/about_For.md b/reference/5.1/Microsoft.PowerShell.Core/About/about_For.md index c8343e7483e3..5c8f723bb156 100644 --- a/reference/5.1/Microsoft.PowerShell.Core/About/about_For.md +++ b/reference/5.1/Microsoft.PowerShell.Core/About/about_For.md @@ -25,7 +25,7 @@ all the values in an array, consider using a Foreach statement. The following shows the For statement syntax. ```powershell -for (>init>; ; ) +for (; ; ) {} ```