Skip to content

Commit 4b43606

Browse files
authored
Fix sample code syntax error
1 parent 126e6fd commit 4b43606

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/active-directory/develop/msal-node-migration.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ const msal = require('@azure/msal-node');
7171

7272
const pca = new msal.PublicClientApplication({
7373
auth: {
74-
clientId = "YOUR_CLIENT_ID"
74+
clientId: "YOUR_CLIENT_ID"
7575
}
7676
});
7777
```
@@ -86,8 +86,8 @@ const msal = require('@azure/msal-node');
8686

8787
const cca = new msal.ConfidentialClientApplication({
8888
auth: {
89-
clientId = "YOUR_CLIENT_ID",
90-
clientSecret = "YOUR_CLIENT_SECRET"
89+
clientId: "YOUR_CLIENT_ID",
90+
clientSecret: "YOUR_CLIENT_SECRET"
9191
}
9292
});
9393
```

0 commit comments

Comments
 (0)