Skip to content

Commit b3d3cc9

Browse files
committed
acrolinx
1 parent e8a1d5d commit b3d3cc9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/azure-resource-manager/bicep/bicep-import.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This article describes the syntax you use to export and import shared functional
1212

1313
## Exporting types, variables and functions
1414

15-
The `@export()` decorator is used to indicate that a given statement can be imported by another file. This decorator is only valid on type, variable and function statements. Variable statements marked with `@export()` must be compile-time constants.
15+
The `@export()` decorator indicates that a given statement can be imported by another file. This decorator is only valid on type, variable, and function statements. Variable statements marked with `@export()` must be compile-time constants.
1616

1717
The syntax for exporting functionality for use in other Bicep files is:
1818

@@ -21,7 +21,7 @@ The syntax for exporting functionality for use in other Bicep files is:
2121
<statement_to_export>
2222
```
2323

24-
## Import types, variables and functions
24+
## Import types, variables, and functions
2525

2626
The syntax for importing functionality from another Bicep file is:
2727

@@ -92,15 +92,15 @@ import '[email protected]'
9292
9393
```
9494

95-
Both `az` and `sys` are Bicep built-in namespaces. They are imported by default. For more information about the data types and the functions defined in `az` and `sys`, see [Data types](./data-types.md) and [Bicep functions](./bicep-functions.md).
95+
Both `az` and `sys` are Bicep built-in namespaces. They're imported by default. For more information about the data types and the functions defined in `az` and `sys`, see [Data types](./data-types.md) and [Bicep functions](./bicep-functions.md).
9696

9797
The syntax for importing Bicep extensions is:
9898

9999
```bicep
100100
import '<extension-name>@<extension-version>'
101101
```
102102

103-
The syntax for importing Bicep extensions which require configuration is:
103+
The syntax for importing Bicep extensions, which require configuration is:
104104

105105
```bicep
106106
import '<extension-name>@<extension-version>' with {

0 commit comments

Comments
 (0)