Skip to content

Commit d24ef28

Browse files
authored
Merge pull request #6304 from Azure/chunsiongtan-patch-2
removing adding space causing powershell error in example
2 parents 3be330b + aa17403 commit d24ef28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ResourceManager/Network/Commands.Network/help/Add-AzureRmApplicationGatewayFrontendPort.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The **Add-AzureRmApplicationGatewayFrontendPort** cmdlet adds a front-end port t
2626
### Example 1: Add a front-end port to an application gateway
2727
```
2828
PS C:\>$AppGw = Get-AzureRmApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01"
29-
PS C:\> $ AppGw = Add-AzureRmApplicationGatewayFrontendPort -ApplicationGateway $AppGw -Name "FrontEndPort01" -Port 80
29+
PS C:\> $AppGw = Add-AzureRmApplicationGatewayFrontendPort -ApplicationGateway $AppGw -Name "FrontEndPort01" -Port 80
3030
```
3131

3232
The first command gets the application gateway named ApplicationGateway01 that belongs to the resource group named ResourceGroup01 and stores it in the $AppGw variable.

0 commit comments

Comments
 (0)