summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAndre Polykanine <ap@oire.me>2019-02-03 20:06:21 +0200
committerGitHub <noreply@github.com>2019-02-03 20:06:21 +0200
commit6c7c14a9f969bbc3c3dc804aa585e2be3ac4ea33 (patch)
tree75381a948b486067e901e7f59f814d469a934848
parent4315785846d0d8a85205a7af4d0a76aec51cfab8 (diff)
parent8847563b08d3d3ab4492d9a12564dd60c8c77e97 (diff)
Merge pull request #3459 from dee-see/master
[powershell/en] 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.