File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
articles/azure-resource-manager Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -185,7 +185,7 @@ The string is `true` because lowercase letters are less than uppercase letters.
185
185
186
186
` operand1 == operand2 `
187
187
188
- Evaluates if the values are equal.
188
+ Evaluates if the values are equal. The comparison is case-sensitive.
189
189
190
190
### Operands
191
191
@@ -207,7 +207,7 @@ param firstInt int = 5
207
207
param secondInt int = 5
208
208
209
209
param firstString string = 'demo'
210
- param secondString string = 'demo '
210
+ param secondString string = 'Demo '
211
211
212
212
param firstBool bool = true
213
213
param secondBool bool = true
@@ -222,7 +222,7 @@ Output from the example:
222
222
| Name | Type | Value |
223
223
| ---- | ---- | ---- |
224
224
| ` intEqual ` | boolean | true |
225
- | ` stringEqual ` | boolean | true |
225
+ | ` stringEqual ` | boolean | false |
226
226
| ` boolEqual ` | boolean | true |
227
227
228
228
When comparing arrays, the two arrays must have the same elements and order. The arrays don't need to be assigned to each other.
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ The output from the preceding example with the default values is:
59
59
60
60
` equals(arg1, arg2) `
61
61
62
- Checks whether two values equal each other .
62
+ Checks whether two values are identical. The comparison is case-sensitive .
63
63
64
64
In Bicep, use the ` == ` operator instead. See [ Equals ==] ( ../bicep/operators-comparison.md#equals- ) .
65
65
@@ -104,7 +104,7 @@ The output from the preceding example with the default values is:
104
104
| Name | Type | Value |
105
105
| ---- | ---- | ----- |
106
106
| checkInts | Bool | True |
107
- | checkStrings | Bool | True |
107
+ | checkStrings | Bool | False |
108
108
| checkArrays | Bool | True |
109
109
| checkObjects | Bool | True |
110
110
You can’t perform that action at this time.
0 commit comments