Skip to content

Commit 8c99632

Browse files
sdwheelerCopilot
andauthored
Fix formatting to avoid over-localization (#12907)
* Fix formatting to avoid over-localization * Apply suggestions from code review Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 3e71e56 commit 8c99632

File tree

5 files changed

+151
-151
lines changed

5 files changed

+151
-151
lines changed

reference/5.1/Microsoft.PowerShell.Core/Start-Job.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
external help file: System.Management.Automation.dll-Help.xml
33
Locale: en-US
44
Module Name: Microsoft.PowerShell.Core
5-
ms.date: 01/18/2026
5+
ms.date: 03/30/2026
66
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/start-job?view=powershell-5.1&WT.mc_id=ps-gethelp
77
schema: 2.0.0
88
aliases:
@@ -264,15 +264,15 @@ Specifies the mechanism that is used to authenticate user credentials.
264264
265265
The acceptable values for this parameter are as follows:
266266
267-
- Default
268-
- Basic
269-
- Credssp
270-
- Digest
271-
- Kerberos
272-
- Negotiate
273-
- NegotiateWithImplicitCredential
267+
- `Default`
268+
- `Basic`
269+
- `Credssp`
270+
- `Digest`
271+
- `Kerberos`
272+
- `Negotiate`
273+
- `NegotiateWithImplicitCredential`
274274

275-
The default value is Default.
275+
The default value is `Default`.
276276

277277
CredSSP authentication is available only in Windows Vista, Windows Server 2008, and later versions
278278
of the Windows operating system.

reference/7.4/Microsoft.PowerShell.Core/Start-Job.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
external help file: System.Management.Automation.dll-Help.xml
33
Locale: en-US
44
Module Name: Microsoft.PowerShell.Core
5-
ms.date: 01/18/2026
5+
ms.date: 03/30/2026
66
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/start-job?view=powershell-7.4&WT.mc_id=ps-gethelp
77
schema: 2.0.0
88
aliases:
@@ -260,7 +260,7 @@ run scripts or open files. In this example, the background job specifies a worki
260260
different than the current directory location.
261261

262262
```powershell
263-
PS C:\Test> Start-Job -WorkingDirectory C:\Test\Scripts { $PWD } |
263+
PS C:\Test> Start-Job -WorkingDirectory C:\Test\Scripts { $PWD } |
264264
Receive-Job -AutoRemoveJob -Wait
265265
266266
Path
@@ -351,15 +351,15 @@ Specifies the mechanism that is used to authenticate user credentials.
351351
352352
The acceptable values for this parameter are as follows:
353353
354-
- Default
355-
- Basic
356-
- Credssp
357-
- Digest
358-
- Kerberos
359-
- Negotiate
360-
- NegotiateWithImplicitCredential
354+
- `Default`
355+
- `Basic`
356+
- `Credssp`
357+
- `Digest`
358+
- `Kerberos`
359+
- `Negotiate`
360+
- `NegotiateWithImplicitCredential`
361361

362-
The default value is Default.
362+
The default value is `Default`.
363363

364364
CredSSP authentication is available only in Windows Vista, Windows Server 2008, and later versions
365365
of the Windows operating system.

reference/7.5/Microsoft.PowerShell.Core/Start-Job.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
external help file: System.Management.Automation.dll-Help.xml
33
Locale: en-US
44
Module Name: Microsoft.PowerShell.Core
5-
ms.date: 01/18/2026
5+
ms.date: 03/30/2026
66
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/start-job?view=powershell-7.5&WT.mc_id=ps-gethelp
77
schema: 2.0.0
88
aliases:
@@ -260,7 +260,7 @@ run scripts or open files. In this example, the background job specifies a worki
260260
different than the current directory location.
261261

262262
```powershell
263-
PS C:\Test> Start-Job -WorkingDirectory C:\Test\Scripts { $PWD } |
263+
PS C:\Test> Start-Job -WorkingDirectory C:\Test\Scripts { $PWD } |
264264
Receive-Job -AutoRemoveJob -Wait
265265
266266
Path
@@ -351,15 +351,15 @@ Specifies the mechanism that is used to authenticate user credentials.
351351
352352
The acceptable values for this parameter are as follows:
353353
354-
- Default
355-
- Basic
356-
- Credssp
357-
- Digest
358-
- Kerberos
359-
- Negotiate
360-
- NegotiateWithImplicitCredential
354+
- `Default`
355+
- `Basic`
356+
- `Credssp`
357+
- `Digest`
358+
- `Kerberos`
359+
- `Negotiate`
360+
- `NegotiateWithImplicitCredential`
361361

362-
The default value is Default.
362+
The default value is `Default`.
363363

364364
CredSSP authentication is available only in Windows Vista, Windows Server 2008, and later versions
365365
of the Windows operating system.

reference/7.6/Microsoft.PowerShell.Core/Start-Job.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
external help file: System.Management.Automation.dll-Help.xml
33
Locale: en-US
44
Module Name: Microsoft.PowerShell.Core
5-
ms.date: 01/18/2026
5+
ms.date: 03/30/2026
66
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/start-job?view=powershell-7.6&WT.mc_id=ps-gethelp
77
schema: 2.0.0
88
aliases:
@@ -260,7 +260,7 @@ run scripts or open files. In this example, the background job specifies a worki
260260
different than the current directory location.
261261

262262
```powershell
263-
PS C:\Test> Start-Job -WorkingDirectory C:\Test\Scripts { $PWD } |
263+
PS C:\Test> Start-Job -WorkingDirectory C:\Test\Scripts { $PWD } |
264264
Receive-Job -AutoRemoveJob -Wait
265265
266266
Path
@@ -351,15 +351,15 @@ Specifies the mechanism that is used to authenticate user credentials.
351351
352352
The acceptable values for this parameter are as follows:
353353
354-
- Default
355-
- Basic
356-
- Credssp
357-
- Digest
358-
- Kerberos
359-
- Negotiate
360-
- NegotiateWithImplicitCredential
354+
- `Default`
355+
- `Basic`
356+
- `Credssp`
357+
- `Digest`
358+
- `Kerberos`
359+
- `Negotiate`
360+
- `NegotiateWithImplicitCredential`
361361

362-
The default value is Default.
362+
The default value is `Default`.
363363

364364
CredSSP authentication is available only in Windows Vista, Windows Server 2008, and later versions
365365
of the Windows operating system.

0 commit comments

Comments
 (0)