Skip to content

Commit 9bcddad

Browse files
authored
Fix typos (#95)
1 parent 27ecb4a commit 9bcddad

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

reference/ps-modules/Microsoft.PowerShell.Crescendo/About/about_Crescendo.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ to enable using other PowerShell cmdlets. When run, this provides an object
130130
that encapsulates the `apt` output
131131

132132
```powershell
133-
PS> get-installedpackage | ?{ $_.name -match "libc"}
133+
PS> Get-InstalledPackage | Where-Object { $_.name -match "libc"}
134134
135135
Name Version Architecture State
136136
---- ------- ------------ -----
@@ -140,7 +140,7 @@ libcap-ng0 0.7.9-2.1build1 amd64 {installed, local}
140140
libcom-err2 1.45.5-2ubuntu1 amd64 {installed, local}
141141
libcrypt1 1:4.4.10-10ubuntu4 amd64 {installed, local}
142142
143-
PS> get-installedpackage | Group-Object Architecture
143+
PS> Get-InstalledPackage | Group-Object Architecture
144144
145145
Count Name Group
146146
----- ---- -----
@@ -159,8 +159,10 @@ The GitHub repository may be found at:
159159
PowerShell Blog posts that present the rational and approaches for native
160160
command wrapping can be found here:
161161

162+
**Native commands in PowerShell a new approach**
163+
162164
- [Part 1](https://devblogs.microsoft.com/powershell/native-commands-in-powershell-a-new-approach/)
163-
- [Part 2](https://devblogs.microsoft.com/powershell/native-commands-in-powershell-a-new-approach-part-2))
165+
- [Part 2](https://devblogs.microsoft.com/powershell/native-commands-in-powershell-a-new-approach-part-2)
164166

165167
## Keywords
166168

0 commit comments

Comments
 (0)