Skip to content

Commit e556acd

Browse files
Merge pull request #226593 from mumian/0207-lambda-arm
fix a problem in the arm lambda function article
2 parents f1c8ffd + cc862cb commit e556acd

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

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

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,7 @@ ms.date: 02/06/2023
99

1010
# Lambda functions for ARM templates
1111

12-
This article describes the lambda functions to use in ARM templates. [Lambda expressions (or lambda functions)](/dotnet/csharp/language-reference/operators/lambda-expressions) are essentially blocks of code that can be passed as an argument. They can take multiple parameters, but are restricted to a single line of code. In ARM templates, lambda expression is in this format:
13-
14-
```json
15-
<lambda variable> => <expression>
16-
```
12+
This article describes the lambda functions to use in ARM templates. [Lambda expressions (or lambda functions)](/dotnet/csharp/language-reference/operators/lambda-expressions) are essentially blocks of code that can be passed as an argument. They can take multiple parameters, but are restricted to a single line of code.
1713

1814
> [!TIP]
1915
> We recommend [Bicep](../bicep/overview.md) because it offers the same capabilities as ARM templates and the syntax is easier to use. To learn more, see [deployment](../bicep/bicep-functions-deployment.md) functions.

0 commit comments

Comments
 (0)