Skip to content

Commit 585e913

Browse files
committed
fix missed hyphen
1 parent 29797c5 commit 585e913

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/service-connector/includes/code-appconfig-me-id.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,10 @@ ms.author: wchi
6161
6262
```java
6363
// Uncomment the following lines according to the authentication type.
64-
// for system managed identity
64+
// for system-managed identity
6565
// DefaultAzureCredential defaultCredential = new DefaultAzureCredentialBuilder().build();
6666
67-
// for user assigned managed identity
67+
// for user-assigned managed identity
6868
// DefaultAzureCredential defaultCredential = new DefaultAzureCredentialBuilder()
6969
// .managedIdentityClientId(System.getenv("AZURE_APPCONFIGURATION_CLIENTID"))
7070
// .build();
@@ -98,10 +98,10 @@ ms.author: wchi
9898
from azure.identity import ManagedIdentityCredential, ClientSecretCredential
9999
100100
# Uncomment the following lines according to the authentication type.
101-
# system assigned managed identity
101+
# system-assigned managed identity
102102
# cred = ManagedIdentityCredential()
103103
104-
# user assigned managed identity
104+
# user-assigned managed identity
105105
# managed_identity_client_id = os.getenv('AZURE_APPCONFIGURATION_CLIENTID')
106106
# cred = ManagedIdentityCredential(client_id=managed_identity_client_id)
107107
@@ -130,10 +130,10 @@ ms.author: wchi
130130
const appConfig = require("@azure/app-configuration");
131131
132132
// Uncomment the following lines according to the authentication type.
133-
// for system assigned managed identity
133+
// for system-assigned managed identity
134134
// const credential = new DefaultAzureCredential();
135135
136-
// for user assigned managed identity
136+
// for user-assigned managed identity
137137
// const clientId = process.env.AZURE_APPCONFIGURATION_CLIENTID;
138138
// const credential = new DefaultAzureCredential({
139139
// managedIdentityClientId: clientId

0 commit comments

Comments
 (0)