Skip to content

Commit 754310b

Browse files
committed
incorporate feedback
1 parent 1cf0242 commit 754310b

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

articles/azure-resource-manager/bicep/bicep-functions-lambda.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Bicep functions - lambda
33
description: Describes the lambda functions to use in a Bicep file.
44
ms.topic: conceptual
55
ms.custom: devx-track-bicep
6-
ms.date: 01/25/2024
6+
ms.date: 05/13/2024
77
---
88
# Lambda functions for Bicep
99

@@ -163,9 +163,9 @@ The output from the preceding example is:
163163

164164
**dogNames** shows the dog names from the array of objects; **sayHi** concatenates "Hello" and each of the dog names; and **mapObject** creates another array of objects.
165165

166-
## mapValue
166+
## mapValues
167167

168-
`mapValue(inputObject, lambda expression)`
168+
`mapValues(inputObject, lambda expression)`
169169

170170
Creates an object from an input object, using a lambda expression to map values.
171171

@@ -184,7 +184,7 @@ An object.
184184

185185
### Example
186186

187-
The following example shows how to use the `mapValue` function.
187+
The following example shows how to use the `mapValues` function.
188188

189189
```bicep
190190
var inputObject = { foo: 'foo', bar: 'bar' }

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Template functions - lambda
33
description: Describes the lambda functions to use in an Azure Resource Manager template (ARM template)
44
ms.topic: conceptual
55
ms.custom: devx-track-arm-template
6-
ms.date: 01/25/2024
6+
ms.date: 05/13/2024
77
---
88

99
# Lambda functions for ARM templates
@@ -227,13 +227,13 @@ The output from the preceding example is:
227227

228228
**dogNames** shows the dog names from the array of objects; **sayHi** concatenates "Hello" and each of the dog names; and **mapObject** creates another array of objects.
229229

230-
## mapValue
230+
## mapValues
231231

232-
`mapValue(inputObject, lambda expression)`
232+
`mapValues(inputObject, lambda expression)`
233233

234234
Creates an object from an input object, using a lambda expression to map values.
235235

236-
In Bicep, use the [mapValue](../bicep/bicep-functions-lambda.md#mapvalue) function.
236+
In Bicep, use the [mapValues](../bicep/bicep-functions-lambda.md#mapvalues) function.
237237

238238
### Parameters
239239

@@ -248,7 +248,7 @@ An object.
248248

249249
### Example
250250

251-
The following example shows how to use the `mapValue` function.
251+
The following example shows how to use the `mapValues` function.
252252

253253
```json
254254
{

0 commit comments

Comments
 (0)