summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMarcel Ribeiro-Dantas <ribeirodantasdm@gmail.com>2023-11-03 20:13:03 -0300
committerGitHub <noreply@github.com>2023-11-03 20:13:03 -0300
commit51ca45c6f92d00f8f646d1090224b36b10c0ad4f (patch)
tree3947b65a7544778103d7379c80d7d5a78035705a
parentab309e1f0abc3cff357e520c1d8961b0348628be (diff)
parent6c46b911f2cdf5b84d19ab0623db8b2eba493bb8 (diff)
Merge pull request #4785 from tpwo/patch-1
[powershell/en] Fix typo
-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.