Skip to content

Commit 546dbb8

Browse files
committed
update
1 parent 934a03b commit 546dbb8

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -169,8 +169,6 @@ In addition to be used in the `type` statement, type expressions can also be use
169169
param mixedTypeArray ('fizz' | 42 | {an: 'object'} | null)[]
170170
```
171171
172-
## An example
173-
174172
A typical Bicep file to create a storage account looks like:
175173
176174
```bicep
@@ -227,7 +225,7 @@ To declare a custom tagged union data type within a Bicep file, you can place a
227225

228226
The discriminator decorator takes a single parameter, which represents a shared property name among all union members. This property name must be a required string literal on all members and is case-sensitive. The values of the discriminated property on the union members must be unique in a case-insensitive manner.
229227

230-
Here is an example:
228+
The following example shows how to declare a tagged union type:
231229

232230
```bicep
233231
type FooConfig = {

0 commit comments

Comments
 (0)