File tree 11 files changed +12
-12
lines changed
Microsoft.PowerShell.Core
Microsoft.PowerShell.Management
7.2/Microsoft.PowerShell.Core/About
7.4/Microsoft.PowerShell.Core/About
Microsoft.PowerShell.Core/About
Microsoft.PowerShell.Utility
docs-conceptual/lang-spec
11 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -256,7 +256,7 @@ Accept wildcard characters: False
256
256
# ## -InformationVariable
257
257
258
258
Introduced in PowerShell 5.0. When you use the **InformationVariable** common
259
- parameter, information records are stored in a the variable specify by the
259
+ parameter, information records are stored in the variable specified by the
260
260
parameter. And PowerShell cmdlet can write information records to the
261
261
**Information** stream. You can also use the `Write-Information` cmdlet to
262
262
write information records.
Original file line number Diff line number Diff line change @@ -138,7 +138,7 @@ determines the order in which PowerShell connects to the remote computers.
138
138
However, the results appear in the order that the data is received from the
139
139
remote computers.
140
140
141
- You can use the ` Sort-Object ` cmdlet to sort the results on on the
141
+ You can use the ` Sort-Object ` cmdlet to sort the results on the
142
142
** PSComputerName** . When you any other property of the object, the results from
143
143
different computers are interspersed interleaved in the output
144
144
Original file line number Diff line number Diff line change @@ -579,7 +579,7 @@ Specifies the functions that the module exports. Wildcards are permitted.
579
579
You can use this parameter to restrict the functions that are exported by the module. It can remove
580
580
functions from the list of exported aliases, but it can't add functions to the list.
581
581
582
- If you omit this parameter, `New-ModuleManifest` creates an **FunctionsToExport** key with a value
582
+ If you omit this parameter, `New-ModuleManifest` creates a **FunctionsToExport** key with a value
583
583
of `*` (all), meaning that all functions defined in the module are exported by the manifest.
584
584
585
585
` ` ` yaml
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ https://en.wikipedia.org/wiki/PowerShell
41
41
42
42
### Example 2: Get the content of the clipboard in a specific format
43
43
44
- In this example we copied files to the clipboard in Windows Explorerby selecting them and pressing
44
+ In this example we copied files to the clipboard in Windows Explorer by selecting them and pressing
45
45
<kbd >Ctrl-C</kbd >. Using the following command, you can access the contents of the clipboard as a
46
46
list of files:
47
47
Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ the `C:\Bin` directory.
125
125
> Unlike PowerShell's _ argument_ mode, object methods execute in _ expression_
126
126
> mode, which is a pass-through to the .NET framework that PowerShell is built
127
127
> on. In _ expression_ mode ** bareword** arguments (unquoted strings) are not
128
- > allowed. You can see this difference when using a the path as a parameter,
128
+ > allowed. You can see this difference when using the path as a parameter,
129
129
> versus the path as an argument. You can read more about parsing modes in
130
130
> [ about_Parsing] ( about_Parsing.md )
131
131
Original file line number Diff line number Diff line change @@ -138,7 +138,7 @@ determines the order in which PowerShell connects to the remote computers.
138
138
However, the results appear in the order that the data is received from the
139
139
remote computers.
140
140
141
- You can use the ` Sort-Object ` cmdlet to sort the results on on the
141
+ You can use the ` Sort-Object ` cmdlet to sort the results on the
142
142
** PSComputerName** . When you any other property of the object, the results from
143
143
different computers are interspersed interleaved in the output
144
144
Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ the `C:\Bin` directory.
125
125
> Unlike PowerShell's _ argument_ mode, object methods execute in _ expression_
126
126
> mode, which is a pass-through to the .NET framework that PowerShell is built
127
127
> on. In _ expression_ mode ** bareword** arguments (unquoted strings) are not
128
- > allowed. You can see this difference when using a the path as a parameter,
128
+ > allowed. You can see this difference when using the path as a parameter,
129
129
> versus the path as an argument. You can read more about parsing modes in
130
130
> [ about_Parsing] ( about_Parsing.md )
131
131
Original file line number Diff line number Diff line change @@ -138,7 +138,7 @@ determines the order in which PowerShell connects to the remote computers.
138
138
However, the results appear in the order that the data is received from the
139
139
remote computers.
140
140
141
- You can use the ` Sort-Object ` cmdlet to sort the results on on the
141
+ You can use the ` Sort-Object ` cmdlet to sort the results on the
142
142
** PSComputerName** . When you any other property of the object, the results from
143
143
different computers are interspersed interleaved in the output
144
144
Original file line number Diff line number Diff line change @@ -138,7 +138,7 @@ determines the order in which PowerShell connects to the remote computers.
138
138
However, the results appear in the order that the data is received from the
139
139
remote computers.
140
140
141
- You can use the ` Sort-Object ` cmdlet to sort the results on on the
141
+ You can use the ` Sort-Object ` cmdlet to sort the results on the
142
142
** PSComputerName** . When you any other property of the object, the results from
143
143
different computers are interspersed interleaved in the output
144
144
Original file line number Diff line number Diff line change @@ -178,7 +178,7 @@ You can pipe a string that contains the variable name to this cmdlet.
178
178
179
179
# ## System.Management.Automation.PSVariable
180
180
181
- By default, this cmdlet returns a **AutomationPSVariable** object for each variable that it gets.
181
+ By default, this cmdlet returns an **AutomationPSVariable** object for each variable that it gets.
182
182
The object type depends on the variable.
183
183
184
184
# ## System.Object[]
Original file line number Diff line number Diff line change 1
- ---
1
+ A inlinescript ---
2
2
description: A statement specifies some sort of action that is to be performed.
3
3
ms.date: 05/16/2022
4
4
title: Statements
@@ -1559,7 +1559,7 @@ inlinescript-statement:
1559
1559
The inlinescript statement contains zero or more statements that are executed in an implementation
1560
1560
defined manner.
1561
1561
1562
- A inlinescript statement is only allowed in a workflow ([§8.10.2][§8.10.2]).
1562
+ An inlinescript statement is only allowed in a workflow ([§8.10.2][§8.10.2]).
1563
1563
1564
1564
# # 8.14 Parameter binding
1565
1565
You can’t perform that action at this time.
0 commit comments