Skip to content

Commit ff0d44f

Browse files
committed
acrolinx
1 parent 7773b59 commit ff0d44f

File tree

11 files changed

+24
-24
lines changed

11 files changed

+24
-24
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Including the missing part. For more information, see [Bicep file](../file.md).
2020

2121
## Examples
2222

23-
The following example raises the error because the `metadata` declaration is not completed:
23+
The following example raises the error because the `metadata` declaration isn't completed:
2424

2525
```bicep
2626
metadata description =

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Use the valid decorators for parameter declarations. For more information, see
2020

2121
## Examples
2222

23-
The following example raises the error because `@export()` is not a valid decorator for parameters.
23+
The following example raises the error because `@export()` isn't a valid decorator for parameters.
2424

2525
```bicep
2626
@export()

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: BCP129
3-
description: Error - Function <function-name> can't be used as a output decorator.
3+
description: Error - Function <function-name> can't be used as an output decorator.
44
ms.topic: reference
55
ms.custom: devx-track-bicep
66
ms.date: 08/23/2024
@@ -20,7 +20,7 @@ Use the valid decorators for output declarations. For more information, see [Dec
2020

2121
## Examples
2222

23-
The following example raises the error because `@export()` is not a valid output decorator.
23+
The following example raises the error because `@export()` isn't a valid output decorator.
2424

2525
```bicep
2626
@export()

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ resource store 'Microsoft.Storage/storageAccounts@2023-05-01' existing = {
3535
}
3636
```
3737

38-
For a list of valid decorators, see [Decorators](../files.md#decorators).
38+
For a list of valid decorators, see [Decorators](../file.md#decorators).
3939

4040
## Next steps
4141

42-
For more information about Bicep error and warning codes, see [Bicep core diagnostics](../bicep-core-diagnostics.md).
42+
For more information about Bicep error and warning codes, see [Bicep core diagnostics](../bicep-core-diagnostics.md).

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ module storage 'br/public:avm/res/storage/storage-account:0.11.1' = [for storage
3838
}]
3939
```
4040

41-
For a list of valid decorators, see [Module decorators](../moduless.md#use-decorators) and [Resource decorators](../resource-declaration.md#use-decorators).
41+
For a list of valid decorators, see [Module decorators](../modules.md#use-decorators) and [Resource decorators](../resource-declaration.md#use-decorators).
4242

4343
## Next steps
4444

45-
For more information about Bicep error and warning codes, see [Bicep core diagnostics](../bicep-core-diagnostics.md).
45+
For more information about Bicep error and warning codes, see [Bicep core diagnostics](../bicep-core-diagnostics.md).

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,35 +8,35 @@ ms.date: 08/23/2024
88

99
# Bicep error code - BCP166
1010

11-
This error occurs when you have duplicated decorators.
11+
This error occurs when you have duplicate decorators.
1212

1313
## Error description
1414

1515
`Duplicate <decorator-name> decorator.`
1616

17-
## Solutions.
17+
## Solutions
1818

19-
Remove the duplicated decorator.
19+
Remove the duplicate decorator.
2020

2121
## Examples
2222

23-
The following example raises the error because there is two duplicated decorators.
23+
The following example raises the error because there's two duplicate decorators.
2424

2525
```bicep
2626
@description('foo')
2727
@description('bar')
2828
param name string
2929
```
3030

31-
You can fix the error by removing one of the duplicated decorators.
31+
You can fix the error by removing one of the duplicate decorators.
3232

3333
```bicep
3434
@description('bar')
3535
param name string
3636
```
3737

38-
For more information, see [Decorators](../files.md#decorators).
38+
For more information, see [Decorators](../file.md#decorators).
3939

4040
## Next steps
4141

42-
For more information about Bicep error and warning codes, see [Bicep core diagnostics](../bicep-core-diagnostics.md).
42+
For more information about Bicep error and warning codes, see [Bicep core diagnostics](../bicep-core-diagnostics.md).

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ You can fix the error by removing the decorator and adding a parameter of type d
2929
param password string
3030
```
3131

32-
For more information, see [Decorators](../files.md#decorators).
32+
For more information, see [Decorators](../file.md#decorators).
3333

3434
## Next steps
3535

36-
For more information about Bicep error and warning codes, see [Bicep core diagnostics](../bicep-core-diagnostics.md).
36+
For more information about Bicep error and warning codes, see [Bicep core diagnostics](../bicep-core-diagnostics.md).

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2-
title: BCP166
2+
title: BCP292
33
description: Error - Expected a parameter, output, or type declaration after the decorator.
44
ms.topic: reference
55
ms.custom: devx-track-bicep
66
ms.date: 08/23/2024
77
---
88

9-
# Bicep error code - BCP166
9+
# Bicep error code - BCP292
1010

1111
This error occurs when you miss type declaration after the `@metadata`, `@minValue()`, `@maxValue()`, `@minLength()`, `@maxLength()`, `@discriminator()`, or `@sealed()` decorator.
1212

@@ -29,8 +29,8 @@ You can fix the error by removing the decorator and adding the correct type decl
2929
param name string
3030
```
3131

32-
For more information, see [Decorators](../files.md#decorators).
32+
For more information, see [Decorators](../file.md#decorators).
3333

3434
## Next steps
3535

36-
For more information about Bicep error and warning codes, see [Bicep core diagnostics](../bicep-core-diagnostics.md).
36+
For more information about Bicep error and warning codes, see [Bicep core diagnostics](../bicep-core-diagnostics.md).

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ param storageAccountName string = 'myStorage'
3838

3939
## Next steps
4040

41-
For more information about Bicep error and warning codes, see [Bicep core diagnostics](../bicep-core-diagnostics.md).
41+
For more information about Bicep error and warning codes, see [Bicep core diagnostics](../bicep-core-diagnostics.md).

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ param storageAccountName string = 'myStorage'
3838

3939
## Next steps
4040

41-
For more information about Bicep error and warning codes, see [Bicep core diagnostics](../bicep-core-diagnostics.md).
41+
For more information about Bicep error and warning codes, see [Bicep core diagnostics](../bicep-core-diagnostics.md).

0 commit comments

Comments
 (0)