From a19c501e213f9d0c36ecd0881e7b341d1312bf28 Mon Sep 17 00:00:00 2001 From: George Chakhidze Date: Tue, 11 Jul 2017 17:54:43 +0400 Subject: [PATCH] Remove Write-Output call from PowerShell example Default behavior of PowerShell is to send any objects at end of pipeline to output. There is no need to explicitly call Write-Output cmdlet. Fixes #416 --- p/powershell.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/p/powershell.ps1 b/p/powershell.ps1 index 29472586..0dcf78b2 100644 --- a/p/powershell.ps1 +++ b/p/powershell.ps1 @@ -1 +1 @@ -Write-Output 'Hello World' +'Hello World'