Skip to content

Commit f4bbc8b

Browse files
Merge pull request #126762 from apjanke/apj/arm-templates-typos
ARM templates doco typos
2 parents 0ffdfb6 + fcbda42 commit f4bbc8b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

articles/azure-resource-manager/templates/syntax.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ In the `definitions` section of the template, specify the schemas used for valid
5757

5858
```json
5959
"definitions": {
60-
"<definition-name": {
60+
"<definition-name>": {
6161
"type": "<data-type-of-definition>",
6262
"allowedValues": [ "<array-of-allowed-values>" ],
6363
"minValue": <minimum-value-for-int>,
@@ -287,8 +287,8 @@ You define resources with the following structure:
287287
"<settings-for-the-resource>",
288288
"copy": [
289289
{
290-
"name": ,
291-
"count": ,
290+
"name": "<name-of-copy-loop>",
291+
"count": <number-of-iterations>,
292292
"input": {}
293293
}
294294
]

articles/azure-resource-manager/templates/template-functions-deployment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ The following example returns the deployer object.
5252
"outputs": {
5353
"developerOutput": {
5454
"type": "object",
55-
"value": "[developer()]"
55+
"value": "[deployer()]"
5656
}
5757
}
5858
}

0 commit comments

Comments
 (0)