Skip to content

Commit 433f35a

Browse files
authored
Fix a few typos (#12325)
1 parent 0b968f1 commit 433f35a

File tree

13 files changed

+13
-13
lines changed

13 files changed

+13
-13
lines changed

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ licenses.
4141
other rights in the material. A licensor may make special requests, such as
4242
asking that all changes be marked or described. Although not required by our
4343
licenses, you are encouraged to respect those requests where reasonable.
44-
More_considerations for the public:
44+
More considerations for the public:
4545
[wiki.creativecommons.org/Considerations_for_licensors][03]
4646

4747
---

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ that is passed to it.
450450

451451
### [about_Registry_Provider](about_Registry_Provider.md)
452452

453-
Describes teh features and functions of the Registry provider.
453+
Describes the features and functions of the Registry provider.
454454

455455
### [about_Regular_Expressions](about_Regular_Expressions.md)
456456

reference/5.1/Microsoft.PowerShell.Management/Add-Computer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ FQDN format. By default, no domain controller is specified.
458458

459459
Beginning in August 2024, security hardening for domain join requires that you use the FQDN of the
460460
domain controller. For example: `DC1.contoso.com`. For more information, see
461-
[NetJoin Domain Join Hardning Changes](https://support.microsoft.com/topic/kb5020276-netjoin-domain-join-hardening-changes-2b65a0f3-1f4c-42ef-ac0f-1caaf421baf8).
461+
[NetJoin Domain Join Hardening Changes](https://support.microsoft.com/topic/kb5020276-netjoin-domain-join-hardening-changes-2b65a0f3-1f4c-42ef-ac0f-1caaf421baf8).
462462

463463
```yaml
464464
Type: System.String

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ By default, when a terminating error is thrown, execution transfers to the trap
255255
statement. After the `trap` block is run, control returns to the next statement
256256
block after the location of the error.
257257

258-
For example, when a terminating error occurs in an `foreach` statement, the
258+
For example, when a terminating error occurs in a `foreach` statement, the
259259
`trap` statement is run and execution continues at the next statement after the
260260
`foreach` block, not within the `foreach` block.
261261

reference/7.4/Microsoft.PowerShell.Utility/Add-Type.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -624,7 +624,7 @@ them. However, using `Add-Type` is still permitted to allow scripts to be implic
624624
any version of PowerShell.
625625

626626
Assemblies in the GAC can be loaded by type name, rather than by path. Loading assemblies from an
627-
arbitrary path requires `Add-Type`, since those assemblies can't not be loaded automatically.
627+
arbitrary path requires `Add-Type`, since those assemblies can't be loaded automatically.
628628

629629
## RELATED LINKS
630630

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,7 @@ that is passed to it.
460460

461461
### [about_Registry_Provider](about_Registry_Provider.md)
462462

463-
Describes teh features and functions of the Registry provider.
463+
Describes the features and functions of the Registry provider.
464464

465465
### [about_Regular_Expressions](about_Regular_Expressions.md)
466466

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ handling.
6868
`__AllParameterSets` is the name of the default parameter set when an explicit
6969
default name is not used.
7070

71-
Setting the `ParameterSetName` of a the **Parameter** attribute to
71+
Setting the `ParameterSetName` of the **Parameter** attribute to
7272
`__AllParameterSets` is equivalent to not assigning a `ParameterSetName`. In
7373
both cases the parameter belongs to all parameter sets.
7474

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ By default, when a terminating error is thrown, execution transfers to the trap
255255
statement. After the `trap` block is run, control returns to the next statement
256256
block after the location of the error.
257257

258-
For example, when a terminating error occurs in an `foreach` statement, the
258+
For example, when a terminating error occurs in a `foreach` statement, the
259259
`trap` statement is run and execution continues at the next statement after the
260260
`foreach` block, not within the `foreach` block.
261261

reference/7.5/Microsoft.PowerShell.Utility/Add-Type.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -625,7 +625,7 @@ them. However, using `Add-Type` is still permitted to allow scripts to be implic
625625
any version of PowerShell.
626626

627627
Assemblies in the GAC can be loaded by type name, rather than by path. Loading assemblies from an
628-
arbitrary path requires `Add-Type`, since those assemblies can't not be loaded automatically.
628+
arbitrary path requires `Add-Type`, since those assemblies can't be loaded automatically.
629629

630630
## RELATED LINKS
631631

reference/7.6/Microsoft.PowerShell.Core/About/about_Switch.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ switch ( ([datetime]'1 Jan 1970').DayOfWeek ) {
210210

211211
The **DayOfWeek** property of the date object is an enumeration. While
212212
enumerations can be compared to their numeric or string values, the `switch`
213-
statement converts the value to a the string representation of the enumeration.
213+
statement converts the value to a string representation of the enumeration.
214214

215215
```Output
216216
The string value matches a Thursday.

0 commit comments

Comments
 (0)