Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/PowerShell/PowerShell.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/demos
diff options
context:
space:
mode:
authorJosh Soref <jsoref@users.noreply.github.com>2016-08-31 21:05:35 +0300
committerTravis Plunk <travis.plunk@microsoft.com>2016-08-31 21:05:35 +0300
commit28b8eece67f3482f529ed3eb055907025ee45199 (patch)
tree54d585b113b74d3eafb49a4dc47fb2d0e340ba7e /demos
parent61255447a03730592dd55623e5a559eacdcac7ba (diff)
spelling fixes: demos (#2060)
Diffstat (limited to 'demos')
-rw-r--r--demos/Apache/Apache/Apache.psm12
-rw-r--r--demos/SystemD/journalctl-demo.ps12
-rw-r--r--demos/crontab/README.md2
3 files changed, 3 insertions, 3 deletions
diff --git a/demos/Apache/Apache/Apache.psm1 b/demos/Apache/Apache/Apache.psm1
index b4de9fda40..c0d39fb582 100644
--- a/demos/Apache/Apache/Apache.psm1
+++ b/demos/Apache/Apache/Apache.psm1
@@ -28,7 +28,7 @@ Function CleanInputString([string]$inputStr){
$outputStr
}
-#EndRegion utilty functions
+#EndRegion utility functions
#Region Class specifications
diff --git a/demos/SystemD/journalctl-demo.ps1 b/demos/SystemD/journalctl-demo.ps1
index 93435b81c2..7de0a08527 100644
--- a/demos/SystemD/journalctl-demo.ps1
+++ b/demos/SystemD/journalctl-demo.ps1
@@ -5,5 +5,5 @@ Write-host -Foreground Blue "Get recent SystemD journal messages"
Get-SystemDJournal -args "-xe" |Out-Host
#Drill into SystemD unit messages
-Write-host -Foreground Blue "Get recent SystemD jounal messages for services and return Unit, Message"
+Write-host -Foreground Blue "Get recent SystemD journal messages for services and return Unit, Message"
Get-SystemDJournal -args "-xe" | Where {$_._SYSTEMD_UNIT -like "*.service"} | Format-Table _SYSTEMD_UNIT, MESSAGE | Select-Object -first 10 | Out-Host
diff --git a/demos/crontab/README.md b/demos/crontab/README.md
index 02138b1e41..bdfb16dbb0 100644
--- a/demos/crontab/README.md
+++ b/demos/crontab/README.md
@@ -3,7 +3,7 @@
This demo shows examining, creating, and removing cron jobs via crontab.
Output of Get-CronJob is a strongly typed object with properties like DayOfWeek or Command.
-Remove-CronJob prompts before removing the job unless you specifiy -Force.
+Remove-CronJob prompts before removing the job unless you specify -Force.
Tab completion of -UserName is supported, e.g.