Skip to content

Commit f6083ba

Browse files
authored
Markdown and PS Styles (MicrosoftDocs#11721)
1 parent 24ff6d6 commit f6083ba

25 files changed

+83
-81
lines changed

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

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -145,14 +145,15 @@ start the job.
145145
- When you use `Start-Job` to start a job on a local computer, the job consists
146146
of an executive parent job and a child job that runs the command.
147147

148-
- When you use the **AsJob** parameter of `Invoke-Command` to start a job on one or
149-
more computers, the job consists of an executive parent job and a child job
150-
for each job run on each computer.
148+
- When you use the **AsJob** parameter of `Invoke-Command` to start a job on
149+
one or more computers, the job consists of an executive parent job and a
150+
child job for each job run on each computer.
151151

152-
- When you use `Invoke-Command` to run a `Start-Job` command on one or more remote
153-
computers, the result is the same as a local command run on each remote
154-
computer. The command returns a job object for each computer. The job object
155-
consists of an executive parent job and one child job that runs the command.
152+
- When you use `Invoke-Command` to run a `Start-Job` command on one or more
153+
remote computers, the result is the same as a local command run on each
154+
remote computer. The command returns a job object for each computer. The job
155+
object consists of an executive parent job and one child job that runs the
156+
command.
156157

157158
The parent job represents all of the child jobs. When you manage a parent job,
158159
you also manage the associated child jobs. For example, if you stop a parent
@@ -239,10 +240,10 @@ exist only in a particular session. Workflow jobs can be suspended and
239240
resumed.
240241

241242
The cmdlets that you use to manage custom jobs depend on the job type. For
242-
some, you use the standard job cmdlets, such as `Get-Job` and `Start-Job`. Others
243-
come with specialized cmdlets that manage only a particular type of job. For
244-
detailed information about custom job types, see the help topics about the job
245-
type.
243+
some, you use the standard job cmdlets, such as `Get-Job` and `Start-Job`.
244+
Others come with specialized cmdlets that manage only a particular type of job.
245+
For detailed information about custom job types, see the help topics about the
246+
job type.
246247

247248
To find the job type of a job, use the `Get-Job` cmdlet. `Get-Job` returns
248249
different job objects for different types of jobs. The value of the
@@ -265,9 +266,9 @@ The following table lists the job types that come with PowerShell.
265266
| PSEventJob | Created using`Register-ObjectEvent` and specifying an |
266267
| | action with the **Action** parameter. |
267268

268-
NOTE: Before using the `Get-Job` cmdlet to get jobs of a particular type, verify
269-
that the module that adds the job type is imported into the current session.
270-
Otherwise, `Get-Job` does not get jobs of that type.
269+
NOTE: Before using the `Get-Job` cmdlet to get jobs of a particular type,
270+
verify that the module that adds the job type is imported into the current
271+
session. Otherwise, `Get-Job` does not get jobs of that type.
271272

272273
## Examples
273274

@@ -354,7 +355,7 @@ Id Name JobTriggers Command Enabled
354355
- [about_Jobs](about_Jobs.md)
355356
- [about_Remote](about_Remote.md)
356357
- [about_Remote_Jobs](about_Remote_Jobs.md)
357-
- [about_Thread_Jobs](/powershell/module/microsoft.powershell.core/about/about_Thread_Jobs)
358+
- [about_Thread_Jobs](about_Thread_Jobs)
358359
- [Invoke-Command](xref:Microsoft.PowerShell.Core.Invoke-Command)
359360
- [Get-Job](xref:Microsoft.PowerShell.Core.Get-Job)
360361
- [Remove-Job](xref:Microsoft.PowerShell.Core.Remove-Job)

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ in the command.
2424
The following diagram shows the syntax for the join operator.
2525

2626
```powershell
27-
-Join <String[]>
28-
<String[]> -Join <Delimiter>
27+
-join <String[]>
28+
<String[]> -join <Delimiter>
2929
```
3030

3131
#### Parameters

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,8 @@ do {<statement list>} until (<condition>)
184184

185185
## `dynamicparam`
186186

187-
Specifies one part of the body of a function, along with the `begin`, `process`,
188-
and `end` keywords. Dynamic parameters are added at runtime.
187+
Specifies one part of the body of a function, along with the `begin`,
188+
`process`, and `end` keywords. Dynamic parameters are added at runtime.
189189

190190
Syntax:
191191

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ Beginning in PowerShell 7.2, the `New-Object` cmdlet is disabled in
339339

340340
<!-- link references -->
341341
[01]: /powershell/scripting/learn/remoting/jea/session-configurations
342-
[02]: about_member-access_enumeration.md
342+
[02]: about_Member-Access_Enumeration.md
343343
[03]: about_Session_Configuration_Files.md
344344
[04]: about_Session_Configurations.md
345345
[05]: xref:Microsoft.PowerShell.Core.New-PSSessionConfigurationFile

reference/7.5/Microsoft.PowerShell.Core/About/about_Logging_Non-Windows.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -295,11 +295,11 @@ To view PowerShell log data from a command line on macOS, use the `log` command
295295
in the **Terminal** or other shell host application. These commands can be run
296296
from **PowerShell**, **Z Shell**, or **Bash**.
297297

298-
In the following example, the `log` command is used to show the log data on your
299-
system as it's occurring in realtime. The **process** parameter filters the log
300-
data for only the `pwsh` process. If you have more than one instance of `pwsh`
301-
running, the **process** parameter also accepts a process ID as its value. The
302-
**level** parameter shows messages at the specified level and below.
298+
In the following example, the `log` command is used to show the log data on
299+
your system as it's occurring in realtime. The **process** parameter filters
300+
the log data for only the `pwsh` process. If you have more than one instance of
301+
`pwsh` running, the **process** parameter also accepts a process ID as its
302+
value. The **level** parameter shows messages at the specified level and below.
303303

304304
```powershell
305305
log stream --predicate "subsystem == 'com.microsoft.powershell'" --level info

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,8 +203,7 @@ private key:
203203

204204
```powershell
205205
Get-WinEvent Microsoft-Windows-PowerShell/Operational |
206-
Where-Object Id -eq 4104 |
207-
Unprotect-CmsMessage
206+
Where-Object Id -eq 4104 | Unprotect-CmsMessage
208207
```
209208

210209
## See also

reference/7.5/Microsoft.PowerShell.Core/About/about_Member-Access_Enumeration.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ During member-access enumeration for a property, the operator returns the value
5757
of the property for each item that has that property. If no items have the
5858
specified property, the operator returns `$null`.
5959

60-
During member-access enumeration for a method, the operator attempts to call the
61-
method on each item in the collection. If any item in the collection does
60+
During member-access enumeration for a method, the operator attempts to call
61+
the method on each item in the collection. If any item in the collection does
6262
not have the specified method, the operator returns the **MethodNotFound**
6363
exception.
6464

@@ -333,7 +333,7 @@ in the array.
333333
### Collections containing PSCustomObject instances
334334

335335
If the collection of objects contains instances of **PSCustomObject** items,
336-
PowerShell unexpectedly retruns `$null` values when the accessed property is
336+
PowerShell unexpectedly returns `$null` values when the accessed property is
337337
missing.
338338

339339
In the following examples at least one object has the referenced property.

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,8 @@ two method signatures:
115115
```
116116

117117
The first method signature takes the destination file name (and a path). The
118-
following example uses the first `CopyTo` method to copy the `Final.txt` file to
119-
the `C:\Bin` directory.
118+
following example uses the first `CopyTo` method to copy the `Final.txt` file
119+
to the `C:\Bin` directory.
120120

121121
```powershell
122122
(Get-ChildItem c:\final.txt).CopyTo("c:\bin\final.txt")

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1559,10 +1559,10 @@ imported as `Get-ExampleItem`.
15591559
[03]: /powershell/gallery/concepts/package-manifest-affecting-ui
15601560
[04]: /powershell/scripting/dev-cross-plat/performance/module-authoring-considerations
15611561
[05]: /powershell/scripting/developer/module/supporting-updatable-help
1562-
[06]: about_experimental_features.md#declaring-experimental-features-in-modules-written-in-powershell
1562+
[06]: about_Experimental_Features.md#declaring-experimental-features-in-modules-written-in-powershell
15631563
[07]: about_Format.ps1xml.md
15641564
[08]: about_Language_Modes.md
1565-
[09]: about_powershell_editions.md
1565+
[09]: about_Powershell_Editions.md
15661566
[10]: about_Types.ps1xml.md
15671567
[11]: about_Updatable_Help.md
15681568
[13]: xref:Microsoft.PowerShell.Core.New-ModuleManifest

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,8 +248,7 @@ For example, to find the commands in the **BitsTransfer** module, type:
248248
Get-Command -Module BitsTransfer
249249
```
250250

251-
For more information about the `Get-Command` cmdlet, see
252-
[Get-Command][11].
251+
For more information about the `Get-Command` cmdlet, see [Get-Command][11].
253252

254253
## Remove a module
255254

0 commit comments

Comments
 (0)