Skip to content

Commit 8ba4af2

Browse files
kozhemyakDCtheGeek
authored andcommitted
Removed unrequited ticks in the code example (#4819)
There is no need of placing command within ticks symbols if it's already placed in the code block. It breaks the output on the web page.
1 parent 26ad83f commit 8ba4af2

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ display. You can still use the **Format** cmdlets to display the **PsComputerNam
316316
of the affected objects.
317317

318318
```powershell
319-
`Invoke-Command` -ComputerName S1, S2 -ScriptBlock {Get-Process PowerShell}
319+
Invoke-Command -ComputerName S1, S2 -ScriptBlock {Get-Process PowerShell}
320320
```
321321

322322
```Output

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ display. You can still use the **Format** cmdlets to display the **PsComputerNam
305305
of the affected objects.
306306

307307
```powershell
308-
`Invoke-Command` -ComputerName S1, S2 -ScriptBlock {Get-Process PowerShell}
308+
Invoke-Command -ComputerName S1, S2 -ScriptBlock {Get-Process PowerShell}
309309
```
310310

311311
```Output

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ display. You can still use the **Format** cmdlets to display the **PsComputerNam
348348
of the affected objects.
349349

350350
```powershell
351-
`Invoke-Command` -ComputerName S1, S2 -ScriptBlock {Get-Process PowerShell}
351+
Invoke-Command -ComputerName S1, S2 -ScriptBlock {Get-Process PowerShell}
352352
```
353353

354354
```Output

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ display. You can still use the **Format** cmdlets to display the **PsComputerNam
364364
of the affected objects.
365365

366366
```powershell
367-
`Invoke-Command` -ComputerName S1, S2 -ScriptBlock {Get-Process PowerShell}
367+
Invoke-Command -ComputerName S1, S2 -ScriptBlock {Get-Process PowerShell}
368368
```
369369

370370
```Output

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ display. You can still use the **Format** cmdlets to display the **PsComputerNam
404404
of the affected objects.
405405

406406
```powershell
407-
`Invoke-Command` -ComputerName S1, S2 -ScriptBlock {Get-Process PowerShell}
407+
Invoke-Command -ComputerName S1, S2 -ScriptBlock {Get-Process PowerShell}
408408
```
409409

410410
```Output

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ display. You can still use the **Format** cmdlets to display the **PsComputerNam
404404
of the affected objects.
405405

406406
```powershell
407-
`Invoke-Command` -ComputerName S1, S2 -ScriptBlock {Get-Process PowerShell}
407+
Invoke-Command -ComputerName S1, S2 -ScriptBlock {Get-Process PowerShell}
408408
```
409409

410410
```Output

0 commit comments

Comments
 (0)