Skip to content

Commit b7e8427

Browse files
committed
edit pass: six-bicep-articles
1 parent c8f6b7c commit b7e8427

File tree

1 file changed

+4
-4
lines changed
  • articles/azure-resource-manager/bicep

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -412,15 +412,15 @@ The following example shows a multiline comment.
412412
param existingKeyVaultName string
413413
```
414414

415-
## Multiline strings
415+
## Multi-line strings
416416

417-
You can break a string into multiple lines. Use three single quotation marks `'''` to start and end the multiline string.
417+
You can break a string into multiple lines. Use three single quotation marks `'''` to start and end the multi-line string.
418418

419-
Characters within the multiline string are handled as is. Escape characters are unnecessary. You can't include `'''` in the multiline string. String interpolation isn't currently supported.
419+
Characters within the multi-line string are handled as is. Escape characters are unnecessary. You can't include `'''` in the multi-line string. String interpolation isn't currently supported.
420420

421421
You can start your string right after the opening `'''` or include a new line. In either case, the resulting string doesn't include a new line. Depending on the line endings in your Bicep file, new lines are interpreted as `\r\n` or `\n`.
422422

423-
The following example shows a multiline string.
423+
The following example shows a multi-line string.
424424

425425
```bicep
426426
var stringVar = '''

0 commit comments

Comments
 (0)