Skip to content

Commit 09d11c2

Browse files
authored
fix typos in compare-template-syntax.md
fix mismatched parenthesis
1 parent dc1a532 commit 09d11c2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/azure-resource-manager/bicep/compare-template-syntax.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ name: orgName
5656
```
5757

5858
```json
59-
"name": "[parameters('orgName'))]"
59+
"name": "[parameters('orgName')]"
6060
```
6161

6262
## Variables
@@ -70,7 +70,7 @@ var description = 'example value'
7070
```json
7171
"variables": {
7272
"description": "example value"
73-
},
73+
}
7474
```
7575

7676
To get a variable value, use the name you defined:
@@ -80,7 +80,7 @@ workloadSetting: description
8080
```
8181

8282
```json
83-
"workloadSetting": "[variables('description'))]"
83+
"workloadSetting": "[variables('description')]"
8484
```
8585

8686
## Strings

0 commit comments

Comments
 (0)