Skip to content

Commit 90f1349

Browse files
committed
incorporate feedback
1 parent 23075ab commit 90f1349

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ This article describes how to use Bicep extensions.
1616
The syntax for importing Bicep extensions is:
1717

1818
```bicep
19-
extionsion '<extension-name>'
19+
extionsion <extension-name>
2020
```
2121

2222
The syntax for importing Bicep extensions, which require configuration is:
2323

2424
```bicep
25-
extension '<extension-name>' with {
25+
extension <extension-name> with {
2626
<extension-properties>
2727
}
2828
```

articles/azure-resource-manager/bicep/bicep-kubernetes-extension.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ The following sample imports the Kubernetes extension:
4848
@secure()
4949
param kubeConfig string
5050
51-
extension 'kubernetes' with {
51+
extension kubernetes with {
5252
namespace: 'default'
5353
kubeConfig: kubeConfig
5454
} as k8s

0 commit comments

Comments
 (0)