Skip to content

Commit f54101f

Browse files
committed
browser index.js;minor doc change
1 parent 8d03bc1 commit f54101f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/TokenCredentialAuthenticationProvider.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,6 @@ The browser use of the file is as follows:
6767
var authProvider = new MicrosoftGraph.TokenCredentialAuthProvider.TokenCredentialAuthenticationProvider(tokenCred, { scopes: scopes });
6868

6969
client = MicrosoftGraph.Client.initWithMiddleware({
70-
authProvider: auth,
70+
authProvider: authProvider,
7171
});
7272
```

src/browser/rollupEntry.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
/**
88
* The purpose of this file is to export from src/browser/index.ts
99
* and the src/browser/ImplicitMSALAuthenticationProvider.
10-
* No separate rollup entry point is added for ImplicitMSALAuthenticationProvider as it is deprecated.
10+
* No separate rollup entry point and bundled file is added for ImplicitMSALAuthenticationProvider as it is deprecated.
1111
* After the ImplicitMSALAuthenticationProvider feature is removed,
12-
* the entry point for rollup should point to src/browser/index.ts/.
12+
* the entry point for rollup should point to src/browser/index.ts.
1313
*/
1414
export * from "./index";
1515
export * from "./ImplicitMSALAuthenticationProvider";

0 commit comments

Comments
 (0)