Skip to content

Commit 1da9199

Browse files
Fix acrolinx
1 parent 50956ae commit 1da9199

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ The following example raises the error because the code is missing `=` and the a
6666
output month int
6767
```
6868

69-
You can fix the error by complete the output declaration.
69+
You can fix the error by completing the output declaration.
7070

7171
```bicep
7272
output month int = 3

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Provide the correct number of arguments.
2020

2121
## Examples
2222

23-
The following example raises the error because [`split()`](../bicep-functions-string.md#split) expects two arguments, but three areguments were provided:
23+
The following example raises the error because [`split()`](../bicep-functions-string.md#split) expects two arguments, but three arguments were provided:
2424

2525
```bicep
2626
var tooManyArgs = split('a,b', ',', '?')

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

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

99
# Bicep error/warning code - BCP082
1010

11-
This error or warning is similiar to [BCP057](./bcp057.md), it occurs when the referenced name doesn't exist, likely due to a typo. The compiler identifies and suggests a similarly named symbol.
11+
This error or warning is similar to [BCP057](./bcp057.md), it occurs when the referenced name doesn't exist, likely due to a typo. The compiler identifies and suggests a similarly named symbol.
1212

1313
## Error/warning description
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This error occurs when you have a decorator that is expecting to be followed by
1616

1717
## Solutions
1818

19-
Add the parameter declartion after the decorator. For a list of valid parameter decorators, see [Decorators](../parameters.md#use-decorators).
19+
Add the parameter declaration after the decorator. For a list of valid parameter decorators, see [Decorators](../parameters.md#use-decorators).
2020

2121
## Examples
2222

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The following example raises the error because type declaration `metadata` misse
2626
metadata
2727
```
2828

29-
You can fix the error by complete the `metadata` declaration.
29+
You can fix the error by completing the `metadata` declaration.
3030

3131
```bicep
3232
metadata description = 'Creates a storage account and a web app'

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: BCP311
3-
description: Error - The provided index value of <index-value> isn't valid for type <type-name>. Indexes for this type must be between 0 and <zero-based-tuple-index>..
3+
description: Error - The provided index value of <index-value> isn't valid for type <type-name>. Indexes for this type must be between 0 and <zero-based-tuple-index>.
44
ms.topic: reference
55
ms.custom: devx-track-bicep
66
ms.date: 08/08/2024

0 commit comments

Comments
 (0)