Skip to content

Commit 7deee7b

Browse files
committed
incorporate feedback
1 parent 1536f43 commit 7deee7b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/azure-resource-manager/bicep/linter-rule-simplify-json-null.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Linter rule - simplify JSON null
33
description: Linter rule - simplify JSON null
44
ms.topic: conceptual
5-
ms.date: 03/16/2023
5+
ms.date: 03/20/2023
66
---
77

88
# Linter rule - simplify JSON null
@@ -17,7 +17,7 @@ Use the following value in the [Bicep configuration file](bicep-config-linter.md
1717

1818
## Solution
1919

20-
The following example fails this test because `json(null)` is used.:
20+
The following example fails this test because `json('null')` is used.:
2121

2222
```bicep
2323
@description('The name of the API Management service instance')
@@ -68,7 +68,7 @@ resource apiManagementService 'Microsoft.ApiManagement/service@2022-08-01' = {
6868
}
6969
```
7070

71-
You can fix the problem by replacing `json('null')` by `null`:
71+
You can simplify the syntax by replacing `json('null')` by `null`:
7272

7373
```bicep
7474
@description('The name of the API Management service instance')
@@ -119,7 +119,7 @@ resource apiManagementService 'Microsoft.ApiManagement/service@2022-08-01' = {
119119
}
120120
```
121121

122-
You can fix the issue automatically by selecting **Quick Fix** as shown on the following screenshot:
122+
You can simplify the syntax by selecting **Quick Fix** as shown on the following screenshot:
123123

124124
:::image type="content" source="./media/linter-rule-simplify-json-null/bicep-linter-rule-simplify-json-null-quick-fix.png" alt-text="Screenshot of simplify JSON null quick fix.":::
125125

0 commit comments

Comments
 (0)