diff options
author | Tomasz Wojdat <tpwojdat@gmail.com> | 2023-11-01 21:28:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-01 21:28:26 +0100 |
commit | 6c46b911f2cdf5b84d19ab0623db8b2eba493bb8 (patch) | |
tree | c092a20814b3b6435217992c490b9ad9cdc2ddd0 | |
parent | 08331fe00f4f7a169fa45cc7152eef2e3919902e (diff) |
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. |