From da964732a3a7067277ea3ac5e043e1b3affcc567 Mon Sep 17 00:00:00 2001 From: jasper-schneider Date: Mon, 29 Feb 2016 11:49:18 -0800 Subject: [PATCH] Fix typo in Set-AzureBatchPool example --- .../Commands.Batch/Microsoft.Azure.Commands.Batch.dll-Help.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Microsoft.Azure.Commands.Batch.dll-Help.xml b/src/ResourceManager/AzureBatch/Commands.Batch/Microsoft.Azure.Commands.Batch.dll-Help.xml index 4c6686d00a52..f42257fdbe65 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Microsoft.Azure.Commands.Batch.dll-Help.xml +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Microsoft.Azure.Commands.Batch.dll-Help.xml @@ -11195,7 +11195,7 @@ PS C:\> $StartTask = New-Object Microsoft.Azure.Commands.Batch.Models.PSStartTask PS C:\> $StartTask.CommandLine = "cmd /c echo example" PS C:\> $Pool.StartTask = $StartTask - PS C:\> Set-AzureBatchPool -PSCloudPool $Pool -BatchContext $Context + PS C:\> Set-AzureBatchPool -Pool $Pool -BatchContext $Context The first command gets a pool by using Get-AzureBatchPool, and then stores it in the $Pool variable.