Skip to content

Commit ea967d6

Browse files
committed
incoporate feedback
2 parents b6652de + 45830f3 commit ea967d6

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

articles/azure-resource-manager/bicep/diagnostics/bcp147.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.date: 08/23/2024
88

99
# Bicep error code - BCP147
1010

11-
This error occurs when you have a `@allowed()` decorator but miss the `param` declaration.
11+
This error occurs when you have a decorator that is expecting to be followed by a `param` declaration, but miss the declaration.
1212

1313
## Error description
1414

articles/azure-resource-manager/bicep/diagnostics/bcp290.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.date: 08/23/2024
88

99
# Bicep error code - BCP290
1010

11-
This error occurs when you miss the parameter or the type declaration after the `@secure()` decorator.
11+
This error occurs when you have a decorator that is expecting to be followed by a `param` or `type` declaration, but miss the declaration.
1212

1313
## Error description
1414

articles/azure-resource-manager/bicep/diagnostics/bcp292.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.date: 08/23/2024
88

99
# Bicep error code - BCP292
1010

11-
This error occurs when you miss type declaration after the `@metadata`, `@minValue()`, `@maxValue()`, `@minLength()`, `@maxLength()`, `@discriminator()`, or `@sealed()` decorator.
11+
This error occurs when you have a decorator that is expecting to be followed by a `param` or `output` or `type` declaration, but miss the declaration.
1212

1313
## Error description
1414

articles/azure-resource-manager/bicep/diagnostics/bcp311.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.date: 08/08/2024
88

99
# Bicep error code - BCP311
1010

11-
This error occurs when you provide an invalid index number.
11+
This error occurs when you provide an invalid index number. Arrays in Bicep are zero-based. For more information, see [Arrays](../data-types.md#arrays).
1212

1313
## Error description
1414

0 commit comments

Comments
 (0)