Skip to content

Commit d3abb54

Browse files
committed
update the file over one year
1 parent b48db7a commit d3abb54

File tree

10 files changed

+13
-13
lines changed

10 files changed

+13
-13
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Bicep functions - any
33
description: Describes the any function that is available in Bicep to convert types.
44
ms.topic: reference
55
ms.custom: devx-track-bicep
6-
ms.date: 06/23/2023
6+
ms.date: 02/12/2025
77
---
88

99
# Any function for Bicep

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Bicep functions - CIDR
33
description: Describes the functions to use in a Bicep file to manipulate IP addresses and create IP address ranges.
44
ms.topic: reference
55
ms.custom: devx-track-bicep
6-
ms.date: 06/08/2023
6+
ms.date: 02/12/2025
77
---
88

99
# CIDR functions for Bicep

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Bicep functions - files
33
description: Describes the functions to use in a Bicep file to load content from a file.
44
ms.topic: reference
55
ms.custom: devx-track-bicep
6-
ms.date: 11/03/2023
6+
ms.date: 02/12/2025
77
---
88

99
# File functions for Bicep

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Bicep functions - numeric
33
description: Describes the functions to use in a Bicep file to work with numbers.
44
ms.topic: reference
55
ms.custom: devx-track-bicep
6-
ms.date: 06/23/2023
6+
ms.date: 02/12/2025
77
---
88

99
# Numeric functions for Bicep

articles/azure-resource-manager/bicep/operator-null-forgiving.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Bicep null-forgiving operator
33
description: Describes Bicep null-forgiving operator.
44
ms.topic: reference
55
ms.custom: devx-track-bicep
6-
ms.date: 05/04/2023
6+
ms.date: 02/12/2025
77
---
88

99
# Bicep null-forgiving operator
@@ -14,7 +14,7 @@ The unary postfix `!` operator is the null-forgiving, or null-suppression, opera
1414

1515
`expression!`
1616

17-
The null-forgiving operator ensures that a value isn't null, thereby changing the assigned type of the value from `null | <type>` to `<type>`.
17+
The null-forgiving operator ensures that a value isn't null, changing the assigned type of the value from `null | <type>` to `<type>`.
1818
The following example fails the design time validation:
1919

2020
```bicep

articles/azure-resource-manager/bicep/operators-comparison.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Bicep comparison operators
33
description: Describes Bicep comparison operators that compare values.
44
ms.topic: reference
55
ms.custom: devx-track-bicep
6-
ms.date: 06/23/2023
6+
ms.date: 02/12/2025
77
---
88

99
# Bicep comparison operators

articles/azure-resource-manager/bicep/operators.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Bicep operators
33
description: Describes the Bicep operators available for Azure Resource Manager deployments.
44
ms.topic: reference
55
ms.custom: devx-track-bicep, devx-track-arm-template
6-
ms.date: 05/16/2023
6+
ms.date: 02/12/2025
77
---
88

99
# Bicep operators
@@ -20,7 +20,7 @@ This article describes the Bicep operators. Operators are used to calculate valu
2020

2121
## Operator precedence and associativity
2222

23-
The operators below are listed in descending order of precedence (the higher the position the higher the precedence). Operators listed at the same level have equal precedence.
23+
The following operators are listed in descending order of precedence (the higher the position the higher the precedence). Operators listed at the same level have equal precedence.
2424

2525
| Symbol | Type of Operation | Associativity |
2626
|:-|:-|:-|

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Template functions - arrays
33
description: Describes the functions to use in an Azure Resource Manager template (ARM template) for working with arrays.
44
ms.topic: reference
55
ms.custom: devx-track-arm-template
6-
ms.date: 01/11/2024
6+
ms.date: 02/12/2025
77
---
88

99
# Array functions for ARM templates
@@ -721,7 +721,7 @@ For arrays, the function iterates through each element in the first parameter an
721721

722722
For objects, property names and values from the first parameter are added to the result. For later parameters, any new names are added to the result. If a later parameter has a property with the same name, that value overwrites the existing value. The order of the properties isn't guaranteed.
723723

724-
The union function merges not only the top-level elements but also recursively merges any nested objects within them. Nested array values are not merged. See the second example in the following section.
724+
The union function merges not only the top-level elements but also recursively merges any nested objects within them. Nested array values aren't merged. See the second example in the following section.
725725

726726
### Example
727727

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Template functions - date
33
description: Describes the functions to use in an Azure Resource Manager template (ARM template) to work with dates.
44
ms.topic: reference
55
ms.custom: devx-track-arm-template
6-
ms.date: 01/17/2024
6+
ms.date: 02/12/2025
77
---
88

99
# Date functions for ARM templates

articles/governance/blueprints/reference/blueprint-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Azure Blueprints functions
33
description: Describes the functions available for use with blueprint artifacts in Azure Blueprints definitions and assignments.
4-
ms.date: 09/07/2023
4+
ms.date: 02/12/2025
55
ms.topic: reference
66
---
77
# Functions for use with Azure Blueprints

0 commit comments

Comments
 (0)