Skip to content

Commit 2bb935d

Browse files
author
Tiago Brenck
committed
grammar fix
1 parent b3b753c commit 2bb935d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-WebApp-OIDC/1-6-SignOut/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ public static IServiceCollection AddMsal(this IServiceCollection services, IEnum
9999

100100
The **Logout Url** that you have registered for your application enables you to implement single sign-out. Indeed, the Microsoft identity platform logout endpoint will call the **Logout Url** registered with your application. This call happens whether or not the sign-out was initiated from your web app, or from another web app or the browser. For more information, see [Single sign-out](https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-protocols-oidc#single-sign-out) in the conceptual documentation.
101101
102-
In our tutorial, you registered `https://localhost:44321/signout-oidc` as the **Logout Url** but you haven't created the `signout-oidc` endpoint. This endpoint is actually implemented by ASP.NET Core so there is no need to create it, however, if you want to intercept you should use `OnRemoteSignOut` event:
102+
In our tutorial, you registered `https://localhost:44321/signout-oidc` as the **Logout Url** but you haven't created the `signout-oidc` endpoint. This endpoint is actually implemented by ASP.NET Core so there is no need to create it, however, if you want to intercept it you should use `OnRemoteSignOut` event:
103103
104104
```CSharp
105105
options.Events.OnRemoteSignOut = async context =>

0 commit comments

Comments
 (0)