Skip to content

Commit fdd7e99

Browse files
authored
Apply suggestions from PR review
1 parent 531264d commit fdd7e99

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/active-directory/develop/tutorial-v2-windows-uwp.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ Eventually, the `AcquireTokenSilent` method fails. Reasons for failure include a
237237

238238
### Instantiate the Microsoft Graph Service Client by obtaining the token from the SignInUserAndGetTokenUsingMSAL method
239239

240-
In the project, create a new file named *TokenProvider.cs*: right-click on the project, select **Add > New Item > Blank Page**.
240+
In the project, create a new file named *TokenProvider.cs*: right-click on the project, select **Add** > **New Item** > **Blank Page**.
241241

242242
Add to the newly created file the following code:
243243

@@ -269,9 +269,9 @@ namespace UWP_app_MSGraph {
269269
```
270270

271271
> [!TIP]
272-
> After pasting the code, make sure that the namespace in the *TokenProvider.cs* file, matches the namespace of your project. This will allow you to more easily reference the `TokenProvider` class in your project.
272+
> After pasting the code, make sure that the namespace in the *TokenProvider.cs* file matches the namespace of your project. This will allow you to more easily reference the `TokenProvider` class in your project.
273273
274-
The `TokenProvider` class defines a custom access token provider that executes the specified delegate method to get and and return an access token.
274+
The `TokenProvider` class defines a custom access token provider that executes the specified delegate method to get and return an access token.
275275

276276
Add the following new method to *MainPage.xaml.cs*:
277277

0 commit comments

Comments
 (0)