diff options
| author | Amru Eliwat <amru.eliwat@ensighten.com> | 2016-10-30 22:51:19 -0400 | 
|---|---|---|
| committer | Amru Eliwat <amru.eliwat@ensighten.com> | 2016-10-30 22:51:19 -0400 | 
| commit | 8e51d5b5c2068744741dca1bade76d292687d098 (patch) | |
| tree | 31210aa28ecae4606f1fb06eea5d27e6b22e6a62 /powershell.html.markdown | |
| parent | 0401e0d5f0668c5dcec53146c7bcabbe3be30e87 (diff) | |
Fixed a few spelling errors
Diffstat (limited to 'powershell.html.markdown')
| -rw-r--r-- | powershell.html.markdown | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/powershell.html.markdown b/powershell.html.markdown index 492e7153..f34d5b4e 100644 --- a/powershell.html.markdown +++ b/powershell.html.markdown @@ -113,7 +113,7 @@ if ($Age -is [string]) {  	echo 'Adult'  } -# Switch statements are more powerfull compared to most languages +# Switch statements are more powerful compared to most languages  $val = "20"  switch($val) {    { $_ -eq 42 }           { "The answer equals 42"; break } @@ -204,7 +204,7 @@ function foo([string]$name) {  # Calling your function  foo "Say my name" -# Functions with named parameters, parameter attributes, parsable documention +# Functions with named parameters, parameter attributes, parsable documentation  <#  .SYNOPSIS  Setup a new website @@ -308,7 +308,7 @@ if (-not (Test-Path $Profile)) {  	notepad $Profile  }  # More info: `help about_profiles` -# For a more usefull shell, be sure to check the project PSReadLine below +# For a more useful shell, be sure to check the project PSReadLine below  ```  Interesting Projects   | 
