Skip to content

Commit c8f6b7c

Browse files
committed
fixing broken bookmark
1 parent 3112e9f commit c8f6b7c

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ You can use functionality that was imported from another file without restrictio
4949

5050
### Example
5151

52-
exports.bicep
52+
*exports.bicep*
5353

5454
```bicep
5555
@export()
@@ -65,7 +65,7 @@ var myConstant = 'This is a constant value'
6565
func sayHello(name string) string => 'Hello ${name}!'
6666
```
6767

68-
main.bicep
68+
*main.bicep*
6969

7070
```bicep
7171
import * as myImports from 'exports.bicep'

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ The `using` statement in [Bicep parameter files](./parameter-files.md) ties the
2929
using '<path>/<file-name>.json'
3030
```
3131

32-
- To use [public modules](./modules.md#path-to-module):
32+
- To use [public modules](./modules.md#path-to-a-module):
3333

3434
```bicep
3535
using 'br/public:<file-path>:<tag>'

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ Within Bicep, you can use these data types:
1818
* [bool](#booleans)
1919
* [int](#integers)
2020
* [object](#objects)
21-
* [secureObject is indicated by a decorator in Bicep](#secure-strings-and-objects)
22-
* [secureString is indicated by a decorator in Bicep](#secure-strings-and-objects)
21+
* [secureObject (indicated by a decorator in Bicep](#secure-strings-and-objects))
22+
* [secureString (indicated by a decorator in Bicep](#secure-strings-and-objects))
2323
* [string](#strings)
2424

2525
## Arrays
@@ -274,16 +274,16 @@ All strings in Bicep support interpolation. To inject an expression, surround it
274274
var storageName = 'storage${uniqueString(resourceGroup().id)}'
275275
```
276276

277-
### Multiline strings
277+
### Multi-line strings
278278

279-
In Bicep, multiline strings are defined between three single quotation marks (`'''`) followed optionally by a newline (the opening sequence) and three single quotation marks (`'''` is the closing sequence). Characters that are entered between the opening and closing sequence are read verbatim. Escaping isn't necessary or possible.
279+
In Bicep, multi-line strings are defined between three single quotation marks (`'''`) followed optionally by a newline (the opening sequence) and three single quotation marks (`'''` is the closing sequence). Characters that are entered between the opening and closing sequence are read verbatim. Escaping isn't necessary or possible.
280280

281281
> [!NOTE]
282282
> The Bicep parser reads all characters as is. Depending on the line endings of your Bicep file, newlines are interpreted as either `\r\n` or `\n`.
283283
>
284-
> Interpolation isn't currently supported in multiline strings. Because of this limitation, you might need to use the [`concat`](./bicep-functions-string.md#concat) function instead of using [interpolation](#strings).
284+
> Interpolation isn't currently supported in multi-line strings. Because of this limitation, you might need to use the [`concat`](./bicep-functions-string.md#concat) function instead of using [interpolation](#strings).
285285
>
286-
> Multiline strings containing `'''` aren't supported.
286+
> Multi-line strings that contain `'''` aren't supported.
287287
288288
```bicep
289289
// evaluates to "hello!"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ You can add one or more decorators for each of the following elements:
118118
* [func](#functions)
119119
* [type](#types)
120120

121-
The decorators include:
121+
The following table lists the decorators.
122122

123123
| Decorator | Apply to element | Apply to data type | Argument | Description |
124124
| --------- | ---- | ----------- | ------- |

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ module stgModule '../storageAccount.json' = {
6363

6464
Use the symbolic name to reference the module in another part of the Bicep file. For example, you can use the symbolic name to get the output from a module. The symbolic name might contain a-z, A-Z, 0-9, and underscore (`_`). The name can't start with a number. A module can't have the same name as a parameter, variable, or resource.
6565

66-
The path can be either a local file or a file in a registry. The local file can be either a Bicep file or an ARM template for JSON. For more information, see [Path to module](#path-to-module).
66+
The path can be either a local file or a file in a registry. The local file can be either a Bicep file or an ARM template for JSON. For more information, see [Path to a module](#path-to-a-module).
6767

6868
The `name` property is required. It becomes the name of the nested deployment resource in the generated template.
6969

articles/azure-resource-manager/bicep/template-specs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ Both the template and its versions can have tags. The tags are applied or inheri
438438

439439
## Link to template specs
440440

441-
After creating a template spec, you can link to that template spec in a Bicep module. The template spec is deployed when you deploy the Bicep file containing that module. For more information, see [File in template spec](./modules.md#path-to-module).
441+
After creating a template spec, you can link to that template spec in a Bicep module. The template spec is deployed when you deploy the Bicep file containing that module. For more information, see [File in template spec](./modules.md#path-to-a-module).
442442

443443
To create aliases for template specs intended for module linking, see [Aliases for modules](./bicep-config-modules.md#aliases-for-modules).
444444

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ The valid type expressions include:
105105
}
106106
```
107107
108-
### Recursion
108+
#### Recursion
109109
110110
Object types can use direct or indirect recursion if at least the leg of the path to the recursion point is optional. For example, the `myObjectType` definition in the following example is valid because the directly recursive `recursiveProp` property is optional:
111111

0 commit comments

Comments
 (0)