Skip to content

Commit 110ffa7

Browse files
authored
Fix Az.SqlVirtualMachine Syntax Errors (Azure#17806)
* Fix Az.SqlVirtualMachine Syntax Errors * Fix Az.SqlVirtualMachine Syntax Errors
1 parent 7457dae commit 110ffa7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/SqlVirtualMachine/SqlVirtualMachine/help/Update-AzSqlVM.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ The Update-AzSqlVM cmdlet updates a sql virtual machine.
4646
### Example 1
4747
```powershell
4848
$tags = @{'key'='value'}
49-
$vm = Update-AzSqlVM -InputObject $vm -Tags $tags
49+
$vm = Update-AzSqlVM -InputObject $vm -Tag $tags
5050
$group.Tags
5151
```
5252

src/SqlVirtualMachine/SqlVirtualMachine/help/Update-AzSqlVMGroup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ The Update-AzSqlVMGroup cmdlet updates a sql virtual machine group.
4545
### Example 1
4646
```powershell
4747
$tags = @{'key'='value'}
48-
$group = Update-AzSqlVMGroup -InputObject $group -Tags $tags
48+
$group = Update-AzSqlVMGroup -InputObject $group -Tag $tags
4949
$group.Tags
5050
```
5151

0 commit comments

Comments
 (0)