summaryrefslogtreecommitdiffhomepage
path: root/powershell.html.markdown
diff options
context:
space:
mode:
authorTomasz Wojdat <tpwojdat@gmail.com>2023-11-01 21:28:26 +0100
committerGitHub <noreply@github.com>2023-11-01 21:28:26 +0100
commit6c46b911f2cdf5b84d19ab0623db8b2eba493bb8 (patch)
treec092a20814b3b6435217992c490b9ad9cdc2ddd0 /powershell.html.markdown
parent08331fe00f4f7a169fa45cc7152eef2e3919902e (diff)
Fix typo
Diffstat (limited to 'powershell.html.markdown')
-rw-r--r--powershell.html.markdown2
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.