summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authordee-see <dominic.couture@gmail.com>2019-02-02 20:41:28 -0500
committerdee-see <dominic.couture@gmail.com>2019-02-02 20:41:28 -0500
commit8847563b08d3d3ab4492d9a12564dd60c8c77e97 (patch)
treee703e820990ba6428e2390c2d18c313d5a0a7c9a
parent96a44abb1d5832c3b7a5bded015fb721998e0a09 (diff)
Fix typo in powershell page
-rw-r--r--powershell.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/powershell.html.markdown b/powershell.html.markdown
index f9c20607..db29bf96 100644
--- a/powershell.html.markdown
+++ b/powershell.html.markdown
@@ -245,7 +245,7 @@ function New-Website() {
'string' | gm
# Syntax for calling static .NET methods
-\[System.Reflection.Assembly]::LoadWithPartialName('Microsoft.VisualBasic')
+[System.Reflection.Assembly]::LoadWithPartialName('Microsoft.VisualBasic')
# Note that .NET functions MUST be called with parentheses
# while PS functions CANNOT be called with parentheses.