Skip to content

Commit a0215bf

Browse files
Merge pull request #127574 from dkontyko/patch-1
Fix bicep parameter example syntax and formatting
2 parents f960693 + 3ec8334 commit a0215bf

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

articles/azure-resource-manager/bicep/parameter-files.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,10 @@ For more information, see [Using statement](./bicep-using.md#the-using-statement
6565

6666
You can apply the `using none` statement to indicate that the parameters file is not tied to a specific Bicep template during authoring or compilation. This decouples the parameter file from a particular template, enabling greater flexibility in how parameters are defined and used across deployments. For more information, see [Using none statement](./bicep-using.md#the-using-none-statement).
6767

68-
```bicep
69-
You can use expressions with the default value. For example:
68+
You can use expressions as parameter values. For example:
7069

7170
```bicep
72-
using 'main.bicep'
71+
using './main.bicep'
7372
7473
param storageName = toLower('MyStorageAccount')
7574
param intValue = 2 + 2

0 commit comments

Comments
 (0)