Skip to content

Commit a5bebdc

Browse files
authored
Fix line breaks in markdown links
1 parent 6cba2dc commit a5bebdc

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

reference/5.1/PSScheduledJob/About/about_Scheduled_Jobs_Advanced.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,8 @@ Start-Job -DefinitionName ProcessJob
145145
```
146146

147147
To manage the job and get the job results, use the job cmdlets. For more
148-
information about the job cmdlets, see [about_Jobs](../../Microsoft.PowerShell.Core/About/about_Jobs.md).
148+
information about the job cmdlets, see
149+
[about_Jobs](../../Microsoft.PowerShell.Core/About/about_Jobs.md).
149150

150151
> [!NOTE]
151152
> To use the Job cmdlets on instances of scheduled jobs, the **PSScheduledJob**
@@ -173,8 +174,8 @@ time of each job instance.
173174

174175
```powershell
175176
Get-Job -Name UpdateHelpJob |
176-
Format-Table -Property Id, PSBeginTime, PSEndTime,
177-
@{Label="Elapsed Time";Expression={$.PSEndTime - $.PSBeginTime}}
177+
Format-Table -Property Id, PSBeginTime, PSEndTime,
178+
@{Label="Elapsed Time";Expression={$.PSEndTime - $.PSBeginTime}}
178179
```
179180

180181
```Output
@@ -213,7 +214,8 @@ new instances of the scheduled job.
213214

214215
The following example uses splatting to create `$JobParms` which are parameter
215216
values that are passed to the `Register-ScheduledJob` cmdlet. For more
216-
information, see [about_Splatting.md](../../Microsoft.PowerShell.Core/About/about_Splatting.md).
217+
information, see
218+
[about_Splatting.md](../../Microsoft.PowerShell.Core/About/about_Splatting.md).
217219
The `Register-ScheduledJob` uses `@JobParms` to create a scheduled job. The
218220
command uses the **MaxResultCount** parameter with a value of 12 to save only
219221
the 12 newest job instance results of the scheduled job.

0 commit comments

Comments
 (0)