Skip to content

Commit 628d67a

Browse files
committed
Merge branch 'master' of https://github.com/MicrosoftDocs/azure-docs-pr into lbpatch
2 parents b7a036d + a567a4b commit 628d67a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1061,16 +1061,16 @@ New-AzResourceGroupDeployment -ResourceGroupName functionexamplegroup -TemplateU
10611061

10621062
## range
10631063

1064-
`range(startingInteger, numberOfElements)`
1064+
`range(startIndex, count)`
10651065

10661066
Creates an array of integers from a starting integer and containing a number of items.
10671067

10681068
### Parameters
10691069

10701070
| Parameter | Required | Type | Description |
10711071
|:--- |:--- |:--- |:--- |
1072-
| startingInteger |Yes |int |The first integer in the array. |
1073-
| numberofElements |Yes |int |The number of integers in the array. |
1072+
| startIndex |Yes |int |The first integer in the array. The sum of startIndex and count must be no greater than 2147483647. |
1073+
| count |Yes |int |The number of integers in the array. Must be non-negative integer up to 10000. |
10741074

10751075
### Return value
10761076

0 commit comments

Comments
 (0)