diff options
author | Marcel Ribeiro-Dantas <ribeirodantasdm@gmail.com> | 2023-11-03 20:13:03 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-03 20:13:03 -0300 |
commit | 51ca45c6f92d00f8f646d1090224b36b10c0ad4f (patch) | |
tree | 3947b65a7544778103d7379c80d7d5a78035705a | |
parent | ab309e1f0abc3cff357e520c1d8961b0348628be (diff) | |
parent | 6c46b911f2cdf5b84d19ab0623db8b2eba493bb8 (diff) |
Merge pull request #4785 from tpwo/patch-1
[powershell/en] Fix typo
-rw-r--r-- | powershell.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/powershell.html.markdown b/powershell.html.markdown index 033d6c25..0383035b 100644 --- a/powershell.html.markdown +++ b/powershell.html.markdown @@ -574,7 +574,7 @@ Get-Process | Foreach-Object ProcessName | Group-Object 1..10 | ForEach-Object { "Loop number $PSITEM" } 1..10 | Where-Object { $PSITEM -gt 5 } | ConvertTo-Json -# A notable pitfall of the pipeline is it's performance when +# A notable pitfall of the pipeline is its performance when # compared with other options. # Additionally, raw bytes are not passed through the pipeline, # so passing an image causes some issues. |