Skip to content

Commit d49fc77

Browse files
authored
Correct case for 'CommonParameters' in help commands
1 parent 11895ce commit d49fc77

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

learn-pr/wwl-azure/understand-command-syntax-windows-powershell/includes/5-display-about-files-content-powershell.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ Get-Help about*
99
To view a specific topic, use:
1010

1111
```powershell
12-
Get-Help about_common_parameters
12+
Get-Help about_CommonParameters
1313
```
1414

1515
You can also open the help topic in a separate window or online:
1616

1717
```powershell
18-
Get-Help about_common_parameters -ShowWindow
19-
Get-Help about_common_parameters -Online
18+
Get-Help about_CommonParameters -ShowWindow
19+
Get-Help about_CommonParameters -Online
2020
```
2121

2222
When you use wildcard characters with the **Get-Help** command, **About** help files will appear in a list when their titles contain a match for your wildcard pattern. Typically, **About** help files will appear last, after any commands whose names also matched your wildcard pattern. You can also use the *‑Category* parameter to specify a search for **About** files.

0 commit comments

Comments
 (0)