Skip to content

Commit 2ca14a3

Browse files
authored
Merge pull request #6305 from Azure/chunsiongtan-patch-3
Typo in powershell command
2 parents d24ef28 + 0a1b2a2 commit 2ca14a3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The **Get-AzureRmApplicationGatewayFrontendPort** cmdlet gets the front-end port
2626
### Example 1: Get a specified front-end port
2727
```
2828
PS C:\>$AppGw = Get-AzureRmApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01"
29-
PS C:\> $FrontEndPort = Get-AzureRmApplicationGatewayFrontendIPort -Name "FrontEndPort01" -ApplicationGateway $AppGw
29+
PS C:\> $FrontEndPort = Get-AzureRmApplicationGatewayFrontendPort -Name "FrontEndPort01" -ApplicationGateway $AppGw
3030
```
3131

3232
The first command gets an application gateway named ApplicationGateway01 from the resource group named ResourceGroup01, and stores it in the $AppGw variable.
@@ -35,7 +35,7 @@ The second command gets the front-end port named FrontEndPort01 from $AppGw and
3535
### Example 2: Get a list of front-end ports
3636
```
3737
PS C:\>$AppGw = Get-AzureRmApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01"
38-
PS C:\> $FrontEndPorts = Get-AzureRmApplicationGatewayFrontendIPort -ApplicationGateway $AppGw
38+
PS C:\> $FrontEndPorts = Get-AzureRmApplicationGatewayFrontendPort -ApplicationGateway $AppGw
3939
```
4040

4141
The first command gets an application gateway named ApplicationGateway01 from the resource group named ResourceGroup01, and stores it in the $AppGw variable.

0 commit comments

Comments
 (0)