Skip to content

Commit 70963c2

Browse files
Merge pull request #225592 from mumian/0130-bool-string
update bool() function
2 parents 6ed1e29 + 4122b8f commit 70963c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Describes the functions to use in a Bicep file to determine logical
44
author: mumian
55
ms.author: jgao
66
ms.topic: conceptual
7-
ms.date: 12/15/2022
7+
ms.date: 01/30/2023
88
---
99

1010
# Logical functions for Bicep
@@ -25,7 +25,7 @@ Namespace: [sys](bicep-functions.md#namespaces-for-functions).
2525

2626
| Parameter | Required | Type | Description |
2727
|:--- |:--- |:--- |:--- |
28-
| arg1 |Yes |string or int |The value to convert to a boolean. The string value is case-insensitive. 0 is considered to be false and all other integers are considered to be true. |
28+
| arg1 |Yes |string or int |The value to convert to a boolean. String value "true" with any combination of upper and lower case characters (for example "True", "TRUE", "tRue", "true") are considered to be equivalent and represent the boolean value of `true`, otherwise `false`. Integer value 0 is considered to be `false` and all other integers are considered to be `true`. |
2929

3030
### Return value
3131

0 commit comments

Comments
 (0)