1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-21 14:02:02 +02:00

Merge pull request #3459 from dee-see/master

[powershell/en] Fix typo in powershell page
This commit is contained in:
Andre Polykanine
2019-02-03 20:06:21 +02:00
committed by GitHub

View File

@@ -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.