Skip to content

Commit 4fed816

Browse files
(MAINT) Address copilot feedback
1 parent 4bd4fb3 commit 4fed816

File tree

15 files changed

+15
-15
lines changed

15 files changed

+15
-15
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ The syntax diagrams use the following symbols:
203203
`[switch]` parameter, the value is set to `$true`.
204204

205205
For example, the **ListImported** parameter of `Get-Command` is a `[switch]`
206-
parameter. When you use the **ListImported** parameter, the cmdlet return
206+
parameter. When you use the **ListImported** parameter, the cmdlet returns
207207
only commands that were imported from modules in the current session.
208208

209209
```Syntax

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ under different conditions. PowerShell evaluates the scriptblock and uses the
163163
result as the default parameter value.
164164

165165
The `Format-Table:AutoSize` key sets that `[switch]` parameter to a default
166-
value of `$true` The `if` statement contains a condition that the `$Host.Name`
166+
value of `$true`. The `if` statement contains a condition that the `$Host.Name`
167167
must be `ConsoleHost`.
168168

169169
```powershell

reference/5.1/Microsoft.PowerShell.Core/Where-Object.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ command.
256256
All PowerShell comparison operators are valid in the scriptblock format. For more information,
257257
see [about_Comparison_Operators](./About/about_Comparison_Operators.md).
258258

259-
- **Simplified syntax**. To enable the simiplified syntax, `Where-Object` includes 31 `[switch]`
259+
- **Simplified syntax**. To enable the simplified syntax, `Where-Object` includes 31 `[switch]`
260260
parameters that represent the comparison operators. The simplified syntax is easier to read and
261261
write than the scriptblock syntax. You can combine one of the `[switch]` parameters with the
262262
**Property** and **Value** parameters to create a command that filters objects based on the

reference/7.4/Microsoft.PowerShell.Core/About/about_Command_Syntax.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ The syntax diagrams use the following symbols:
203203
`[switch]` parameter, the value is set to `$true`.
204204

205205
For example, the **ListImported** parameter of `Get-Command` is a `[switch]`
206-
parameter. When you use the **ListImported** parameter, the cmdlet return
206+
parameter. When you use the **ListImported** parameter, the cmdlet returns
207207
only commands that were imported from modules in the current session.
208208

209209
```Syntax

reference/7.4/Microsoft.PowerShell.Core/About/about_Parameters_Default_Values.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ under different conditions. PowerShell evaluates the scriptblock and uses the
163163
result as the default parameter value.
164164

165165
The `Format-Table:AutoSize` key sets that `[switch]` parameter to a default
166-
value of `$true` The `if` statement contains a condition that the `$Host.Name`
166+
value of `$true`. The `if` statement contains a condition that the `$Host.Name`
167167
must be `ConsoleHost`.
168168

169169
```powershell

reference/7.4/Microsoft.PowerShell.Core/Where-Object.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ command.
263263
All PowerShell comparison operators are valid in the scriptblock format. For more information,
264264
see [about_Comparison_Operators](./About/about_Comparison_Operators.md).
265265

266-
- **Simplified syntax**. To enable the simiplified syntax, `Where-Object` includes 31 `[switch]`
266+
- **Simplified syntax**. To enable the simplified syntax, `Where-Object` includes 31 `[switch]`
267267
parameters that represent the comparison operators. The simplified syntax is easier to read and
268268
write than the scriptblock syntax. You can combine one of the `[switch]` parameters with the
269269
**Property** and **Value** parameters to create a command that filters objects based on the

reference/7.4/Microsoft.PowerShell.Utility/ConvertTo-Json.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ Get-Date | ConvertTo-Json; Get-Date | ConvertTo-Json -AsArray
8181
]
8282
```
8383

84-
This example shows the output from `ConvertTo-Json` cmdlet with and without the **AsArray**
84+
This example shows the output from the `ConvertTo-Json` cmdlet with and without the **AsArray**
8585
`[switch]` parameter. You can see the second portion of the output is wrapped in array brackets.
8686

8787
### Example 3

reference/7.5/Microsoft.PowerShell.Core/About/about_Command_Syntax.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ The syntax diagrams use the following symbols:
203203
`[switch]` parameter, the value is set to `$true`.
204204

205205
For example, the **ListImported** parameter of `Get-Command` is a `[switch]`
206-
parameter. When you use the **ListImported** parameter, the cmdlet return
206+
parameter. When you use the **ListImported** parameter, the cmdlet returns
207207
only commands that were imported from modules in the current session.
208208

209209
```Syntax

reference/7.5/Microsoft.PowerShell.Core/About/about_Parameters_Default_Values.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ under different conditions. PowerShell evaluates the scriptblock and uses the
163163
result as the default parameter value.
164164

165165
The `Format-Table:AutoSize` key sets that `[switch]` parameter to a default
166-
value of `$true` The `if` statement contains a condition that the `$Host.Name`
166+
value of `$true`. The `if` statement contains a condition that the `$Host.Name`
167167
must be `ConsoleHost`.
168168

169169
```powershell

reference/7.5/Microsoft.PowerShell.Core/Where-Object.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ command.
263263
All PowerShell comparison operators are valid in the scriptblock format. For more information,
264264
see [about_Comparison_Operators](./About/about_Comparison_Operators.md).
265265

266-
- **Simplified syntax**. To enable the simiplified syntax, `Where-Object` includes 31 `[switch]`
266+
- **Simplified syntax**. To enable the simplified syntax, `Where-Object` includes 31 `[switch]`
267267
parameters that represent the comparison operators. The simplified syntax is easier to read and
268268
write than the scriptblock syntax. You can combine one of the `[switch]` parameters with the
269269
**Property** and **Value** parameters to create a command that filters objects based on the

0 commit comments

Comments
 (0)