Skip to content

Commit e039392

Browse files
authored
Merge pull request Azure#4868 from jpsnover/patch-3
Improve readability
2 parents 724733c + 95fcf47 commit e039392

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/ResourceManager/Resources/Commands.Resources/help/New-AzureRmResourceGroup.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,11 @@ Azure resource group is a collection of Azure resources that are deployed as a u
3232

3333
### Example 1: Create an empty resource group
3434
```
35-
PS C:\>New-AzureRmResourceGroup -Name "RG01" -Location "South Central US"
35+
PS> New-AzureRmResourceGroup -Name RG01 -Location "South Central US"
36+
```
37+
or
38+
```
39+
PS> New-AzureRmResourceGroup RG01 "South Central US"
3640
```
3741

3842
This command creates a resource group that has no resources. You can use the
@@ -41,7 +45,7 @@ deployments to this resource group.
4145

4246
### Example 2: Create a resource group with tags
4347
```
44-
PS C:\>New-AzureRmResourceGroup -Name "RG01" -Location "South Central US" -Tag @{"Empty"=$null; "Department"="Marketing"}
48+
PS> New-AzureRmResourceGroup -Name RG01 -Location "South Central US" -Tag @{Empty=$null; Department="Marketing"}
4549
```
4650

4751
This command creates an empty resource group. This command is the same as the command in Example 1,

0 commit comments

Comments
 (0)