Skip to content

Commit 596d162

Browse files
Update articles/active-directory/develop/tutorial-v2-windows-desktop.md
Co-authored-by: Owen Richards <[email protected]>
1 parent 5704fd2 commit 596d162

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ The `AcquireTokenSilent` method handles token acquisitions and renewals without
270270

271271
Eventually, the `AcquireTokenSilent` method may fail. Reasons for failure might be that the user has either signed out or changed their password on another device. When MSAL detects that the issue can be resolved by requiring an interactive action, it fires an `MsalUiRequiredException` exception. Your application can handle this exception in two ways:
272272

273-
- It can make a call against `AcquireTokenInteractive` immediately. This call results in prompting the user to sign in. This pattern is used in online applications where there's no available offline content for the user. The sample generated by this guided setup follows this pattern, which you can see in action the first time you execute the sample.
273+
- It can make a call against `AcquireTokenInteractive` immediately. This call results in prompting the user to sign in. This pattern is used in online applications where there's no available offline content for the user. The sample generated by this setup follows this pattern, which can be seen in action the first time you execute the sample.
274274

275275
- Because no user has used the application, `PublicClientApp.Users.FirstOrDefault()` contains a null value, and an `MsalUiRequiredException` exception is thrown.
276276

0 commit comments

Comments
 (0)