Skip to content

Commit dc330b2

Browse files
nschonnisdwheeler
authored andcommitted
typo: pararm -> param (#3996)
* typo: propety -> property * typo: pararm -> param
1 parent 8e874a0 commit dc330b2

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

reference/3.0/Microsoft.PowerShell.Core/About/about_Automatic_Variables.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ on selected objects in a pipeline.
4242

4343
Contains an array of values for undeclared parameters that are passed to a
4444
function, script, or script block. When you create a function, you can declare
45-
the parameters by using the `pararm` keyword or by adding a comma-separated list
45+
the parameters by using the `param` keyword or by adding a comma-separated list
4646
of parameters in parentheses after the function name.
4747

4848
In an event action, the `$Args` variable contains objects that represent the
@@ -722,7 +722,7 @@ The following loop only executes twice. In the second iteration, the collection
722722
is moved to the 3rd element before the iteration is complete. After the second
723723
iteration, there are now no more values to iterate, and the loop terminates.
724724

725-
The **MoveNext** propety does not affect the variable chosen to iterate through
725+
The **MoveNext** property does not affect the variable chosen to iterate through
726726
the collection (`$Num`).
727727

728728
```powershell

reference/4.0/Microsoft.PowerShell.Core/About/about_Automatic_Variables.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ on selected objects in a pipeline.
4242

4343
Contains an array of values for undeclared parameters that are passed to a
4444
function, script, or script block. When you create a function, you can declare
45-
the parameters by using the `pararm` keyword or by adding a comma-separated list
45+
the parameters by using the `param` keyword or by adding a comma-separated list
4646
of parameters in parentheses after the function name.
4747

4848
In an event action, the `$Args` variable contains objects that represent the
@@ -720,7 +720,7 @@ The following loop only executes twice. In the second iteration, the collection
720720
is moved to the 3rd element before the iteration is complete. After the second
721721
iteration, there are now no more values to iterate, and the loop terminates.
722722

723-
The **MoveNext** propety does not affect the variable chosen to iterate through
723+
The **MoveNext** property does not affect the variable chosen to iterate through
724724
the collection (`$Num`).
725725

726726
```powershell

reference/5.0/Microsoft.PowerShell.Core/About/about_Automatic_Variables.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -722,7 +722,7 @@ The following loop only executes twice. In the second iteration, the collection
722722
is moved to the 3rd element before the iteration is complete. After the second
723723
iteration, there are now no more values to iterate, and the loop terminates.
724724

725-
The **MoveNext** propety does not affect the variable chosen to iterate through
725+
The **MoveNext** property does not affect the variable chosen to iterate through
726726
the collection (`$Num`).
727727

728728
```powershell

reference/5.1/Microsoft.PowerShell.Core/About/about_Automatic_Variables.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ on selected objects in a pipeline.
4242

4343
Contains an array of values for undeclared parameters that are passed to a
4444
function, script, or script block. When you create a function, you can declare
45-
the parameters by using the `pararm` keyword or by adding a comma-separated list
45+
the parameters by using the `param` keyword or by adding a comma-separated list
4646
of parameters in parentheses after the function name.
4747

4848
In an event action, the `$Args` variable contains objects that represent the
@@ -720,7 +720,7 @@ The following loop only executes twice. In the second iteration, the collection
720720
is moved to the 3rd element before the iteration is complete. After the second
721721
iteration, there are now no more values to iterate, and the loop terminates.
722722

723-
The **MoveNext** propety does not affect the variable chosen to iterate through
723+
The **MoveNext** property does not affect the variable chosen to iterate through
724724
the collection (`$Num`).
725725

726726
```powershell

reference/6/Microsoft.PowerShell.Core/About/about_Automatic_Variables.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ on selected objects in a pipeline.
4242

4343
Contains an array of values for undeclared parameters that are passed to a
4444
function, script, or script block. When you create a function, you can declare
45-
the parameters by using the `pararm` keyword or by adding a comma-separated list
45+
the parameters by using the `param` keyword or by adding a comma-separated list
4646
of parameters in parentheses after the function name.
4747

4848
In an event action, the `$Args` variable contains objects that represent the
@@ -741,7 +741,7 @@ The following loop only executes twice. In the second iteration, the collection
741741
is moved to the 3rd element before the iteration is complete. After the second
742742
iteration, there are now no more values to iterate, and the loop terminates.
743743

744-
The **MoveNext** propety does not affect the variable chosen to iterate through
744+
The **MoveNext** property does not affect the variable chosen to iterate through
745745
the collection (`$Num`).
746746

747747
```powershell

0 commit comments

Comments
 (0)