Skip to content

Commit fe1f700

Browse files
committed
incorporate editor comments
1 parent 7f2401c commit fe1f700

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ type oneOfSeveralObjects = {foo: 'bar'} | {fizz: 'buzz'} | {snap: 'crackle'}
329329
type mixedTypeArray = ('fizz' | 42 | {an: 'object'} | null)[]
330330
```
331331

332-
Type unions must be reduceable to a single ARM type, such as 'string', 'int', or 'bool'. Otherwise, you get the [BCP294](./diagnostics/bcp294.md) error code. For example:
332+
Type unions must be reducible to a single ARM type, such as 'string', 'int', or 'bool'. Otherwise, you get the [BCP294](./diagnostics/bcp294.md) error code. For example:
333333

334334
```bicep
335335
type foo = 'a' | 1

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Add the missing character.
2020

2121
## Examples
2222

23-
The following example raises the error because the code missing a _}_.
23+
The following example raises the error because the code is missing a _}_.
2424

2525
```bicep
2626
output tennisBall object = {
@@ -37,7 +37,7 @@ output tennisBall object = {
3737
}
3838
```
3939

40-
The following example raises the error because the code missing a _]_.
40+
The following example raises the error because the code is missing a _]_.
4141

4242
```bicep
4343
output colors array = [

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
---
22
title: BCP055
3-
description: Error - Cannot access properties of type <type-name>. An <type-name> type is required..
3+
description: Error - Cannot access properties of type <type-name>. A <type-name> type is required.
44
ms.topic: reference
55
ms.custom: devx-track-bicep
66
ms.date: 08/07/2024
77
---
88

99
# Bicep error code - BCP055
1010

11-
This error occurs when you reference a non-existent property of a type.
11+
This error occurs when you reference a nonexistent property of a type.
1212

1313
## Error description
1414

15-
`Cannot access properties of type <type-name>. An <type-name> type is required.`
15+
`Cannot access properties of type <type-name>. A <type-name> type is required.`
1616

1717
## Examples
1818

19-
The following example raises the error because _string.bar_ is not defined:
19+
The following example raises the error because _string.bar_ isn't defined:
2020

2121
```bicep
2222
type foo = string.bar

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ type ball = {
6060
6161
output tennisBall ball = {
6262
name: 'tennis'
63-
color1: 'yellow'
63+
color: 'yellow'
6464
}
6565
```
6666

0 commit comments

Comments
 (0)