Skip to content

Commit 08748a9

Browse files
authored
Continuation of PR11493 - copy changes to other versions (#11494)
1 parent c316717 commit 08748a9

File tree

31 files changed

+37
-37
lines changed

31 files changed

+37
-37
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -784,7 +784,7 @@ Stopped AppIDSvc Application Identity
784784

785785
> [!NOTE]
786786
> Both `ForEach()` and `Where()` methods are intrinsic members. For more
787-
> information about intrinsic members, see [about_Instrinsic_Members][08].
787+
> information about intrinsic members, see [about_Intrinsic_Members][08].
788788
789789
## Get the members of an array
790790

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ the new variables `$sortedOriginal` and `$sortedPadded`. Finally, it uses a
349349
properties:
350350

351351
- **Index** represents the current index in the sorted arrays.
352-
- **Original** is the item in the sorted array of original filenamess at the
352+
- **Original** is the item in the sorted array of original filenames at the
353353
current index.
354354
- **Padded** is the item in the sorted array of padded filenames at the current
355355
index.

reference/5.1/Microsoft.PowerShell.Core/Invoke-Command.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1258,7 +1258,7 @@ names and the values are session option values.
12581258

12591259
> [!NOTE]
12601260
> If you specify a hashtable for **SessionOption**, PowerShell converts the hashtable into a
1261-
> **System.Management.Autiomation.Remoting.PSSessionOption** object. The values for keys specified
1261+
> **System.Management.Automation.Remoting.PSSessionOption** object. The values for keys specified
12621262
> in the hashtable are cast to the matching property of the object. This behaves differently from
12631263
> calling `New-PSSessionOption`. For example, the **System.TimeSpan** values for the timeout
12641264
> properties, like **IdleTimeout**, convert an integer value into ticks instead of milliseconds.

reference/5.1/Microsoft.PowerShell.Management/Suspend-Service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Suspend-Service [-PassThru] -DisplayName <String[]> [-Include <String[]>] [-Excl
4040

4141
The `Suspend-Service` cmdlet sends a suspend message to the Windows Service Controller for each of
4242
the specified services. While suspended, the service is still running, but its action is stopped
43-
until resumed, such as by usingthe `Resume-Service` cmdlet. You can specify the services by their
43+
until resumed, such as by using the `Resume-Service` cmdlet. You can specify the services by their
4444
service names or display names, or you can use the **InputObject** parameter to pass a service
4545
object that represents the services that you want to suspend.
4646

reference/5.1/Microsoft.PowerShell.Utility/Out-File.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ the file's content in the PowerShell console.
138138
### Example 5: Set file output width for entire scope
139139

140140
This example uses `$PSDefaultParameterValues` to set the `Width` parameter for all invocations of
141-
`Out-File` and the redirection operartors (`>` and `>>`) to 2000. This ensures that everywhere
141+
`Out-File` and the redirection operators (`>` and `>>`) to 2000. This ensures that everywhere
142142
within the current scope that you output table formatted data to file, PowerShell uses a line width
143143
of 2000 instead of a line width determined by the PowerShell host's console width.
144144

reference/5.1/Microsoft.PowerShell.Utility/Update-TypeData.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ The second command uses the `Update-TypeData` cmdlet to set the default list pro
199199
**DefaultDisplayPropertySet** parameter to specify the default properties for a list. The selected
200200
properties include the new **Quarter** script property that was added in a previous example.
201201

202-
The last command gets the currnet date and displays it in a list format again. It only displays the
202+
The last command gets the current date and displays it in a list format again. It only displays the
203203
properties defined in the `Update-TypeData` command, instead of the full list of properties.
204204

205205
### Example 5: Set the property a type displays in wide format

reference/5.1/Microsoft.WSMan.Management/Disconnect-WSMan.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ PS C:\> cd WSMan:
4141
PS WSMan:\> dir
4242
```
4343

44-
```Outpue
44+
```Output
4545
WSManConfig: Microsoft.WSMan.Management\WSMan::WSMan
4646
ComputerName Type
4747
------------ ----

reference/7.2/Microsoft.PowerShell.Core/About/about_Arrays.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -784,7 +784,7 @@ Stopped AppIDSvc Application Identity
784784

785785
> [!NOTE]
786786
> Both `ForEach()` and `Where()` methods are intrinsic members. For more
787-
> information about intrinsic members, see [about_Instrinsic_Members][08].
787+
> information about intrinsic members, see [about_Intrinsic_Members][08].
788788
789789
## Get the members of an array
790790

reference/7.2/Microsoft.PowerShell.Core/About/about_For.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ the new variables `$sortedOriginal` and `$sortedPadded`. Finally, it uses a
349349
properties:
350350

351351
- **Index** represents the current index in the sorted arrays.
352-
- **Original** is the item in the sorted array of original filenamess at the
352+
- **Original** is the item in the sorted array of original filenames at the
353353
current index.
354354
- **Padded** is the item in the sorted array of padded filenames at the current
355355
index.

reference/7.2/Microsoft.PowerShell.Core/About/about_Functions_Argument_Completion.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ By deriving from `ArgumentCompleterAttribute`, it's possible to create generic
262262
completers that can be reused, for example:
263263

264264
```powershell
265-
[DirectoryCompleter(ContainingFile="pswh.exe", Depth=2)]
265+
[DirectoryCompleter(ContainingFile="pwsh.exe", Depth=2)]
266266
267267
[DateCompleter(WeekDay='Monday', From="LastYear")]
268268

0 commit comments

Comments
 (0)