Skip to content

Commit ac4c7cf

Browse files
Merge pull request #124124 from patrcoff/patch-1
Update data-types.md with correction of example code
2 parents 299e721 + c0916a3 commit ac4c7cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/azure-resource-manager/bicep/data-types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ param emptyArray array = []
8383
param numberArray array = [1, 2, 3]
8484
8585
output foo bool = empty(emptyArray) || emptyArray[0] == 'bar'
86-
output bar bool = length(numberArray) >= 3 || numberArray[3] == 4
86+
output bar bool = length(numberArray) <= 3 || numberArray[3] == 4
8787
```
8888

8989
## Booleans

0 commit comments

Comments
 (0)