Skip to content

Commit cd4e3c1

Browse files
committed
update the limit of the number of variables
1 parent a7ac0a5 commit cd4e3c1

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ The string is `true` because lowercase letters are less than uppercase letters.
185185

186186
`operand1 == operand2`
187187

188-
Evaluates if the values are equal.
188+
Evaluates if the values are equal. The comparison is case-sensitive.
189189

190190
### Operands
191191

@@ -207,7 +207,7 @@ param firstInt int = 5
207207
param secondInt int = 5
208208
209209
param firstString string = 'demo'
210-
param secondString string = 'demo'
210+
param secondString string = 'Demo'
211211
212212
param firstBool bool = true
213213
param secondBool bool = true
@@ -222,7 +222,7 @@ Output from the example:
222222
| Name | Type | Value |
223223
| ---- | ---- | ---- |
224224
| `intEqual` | boolean | true |
225-
| `stringEqual` | boolean | true |
225+
| `stringEqual` | boolean | false |
226226
| `boolEqual` | boolean | true |
227227

228228
When comparing arrays, the two arrays must have the same elements and order. The arrays don't need to be assigned to each other.

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ The output from the preceding example with the default values is:
5959

6060
`equals(arg1, arg2)`
6161

62-
Checks whether two values equal each other.
62+
Checks whether two values are identical. The comparison is case-sensitive.
6363

6464
In Bicep, use the `==` operator instead. See [Equals ==](../bicep/operators-comparison.md#equals-).
6565

@@ -104,7 +104,7 @@ The output from the preceding example with the default values is:
104104
| Name | Type | Value |
105105
| ---- | ---- | ----- |
106106
| checkInts | Bool | True |
107-
| checkStrings | Bool | True |
107+
| checkStrings | Bool | False |
108108
| checkArrays | Bool | True |
109109
| checkObjects | Bool | True |
110110

0 commit comments

Comments
 (0)