From 683efb53cb7fcf1bb6f3008c47a220606c22a4d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Chalet?= Date: Wed, 19 Jun 2024 18:50:51 +0200 Subject: [PATCH] Fix the XML documentation associated with the AdjustRedirectUriInTokenRequest event handler --- .../OpenIddictClientAspNetCoreHandlers.cs | 2 +- src/OpenIddict.Client.Owin/OpenIddictClientOwinHandlers.cs | 2 +- .../OpenIddictClientWebIntegrationHandlers.cs | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/OpenIddict.Client.AspNetCore/OpenIddictClientAspNetCoreHandlers.cs b/src/OpenIddict.Client.AspNetCore/OpenIddictClientAspNetCoreHandlers.cs index 5936993f..547afc90 100644 --- a/src/OpenIddict.Client.AspNetCore/OpenIddictClientAspNetCoreHandlers.cs +++ b/src/OpenIddict.Client.AspNetCore/OpenIddictClientAspNetCoreHandlers.cs @@ -704,7 +704,7 @@ public static partial class OpenIddictClientAspNetCoreHandlers // unlike the form_post response mode, is compatible with SameSite=Lax cookies (as it uses GET requests // for the callback stage). However, some specific response_type/response_mode combinations are not // allowed (e.g query can never be used with a type containing id_token or token, as required by the - // OAuth 2.0 multiple response types specification. To prevent invalid combinations from being sent to + // OAuth 2.0 multiple response types specification). To prevent invalid combinations from being sent to // the remote server, the response types are taken into account when selecting the best response mode. if (context.ResponseType?.Split(Separators.Space) is not IList { Count: > 0 } types) { diff --git a/src/OpenIddict.Client.Owin/OpenIddictClientOwinHandlers.cs b/src/OpenIddict.Client.Owin/OpenIddictClientOwinHandlers.cs index 1e270ea0..b8159abb 100644 --- a/src/OpenIddict.Client.Owin/OpenIddictClientOwinHandlers.cs +++ b/src/OpenIddict.Client.Owin/OpenIddictClientOwinHandlers.cs @@ -731,7 +731,7 @@ public static partial class OpenIddictClientOwinHandlers // unlike the form_post response mode, is compatible with SameSite=Lax cookies (as it uses GET requests // for the callback stage). However, some specific response_type/response_mode combinations are not // allowed (e.g query can never be used with a type containing id_token or token, as required by the - // OAuth 2.0 multiple response types specification. To prevent invalid combinations from being sent to + // OAuth 2.0 multiple response types specification). To prevent invalid combinations from being sent to // the remote server, the response types are taken into account when selecting the best response mode. if (context.ResponseType?.Split(Separators.Space) is not IList { Count: > 0 } types) { diff --git a/src/OpenIddict.Client.WebIntegration/OpenIddictClientWebIntegrationHandlers.cs b/src/OpenIddict.Client.WebIntegration/OpenIddictClientWebIntegrationHandlers.cs index 966d6aef..e06b5223 100644 --- a/src/OpenIddict.Client.WebIntegration/OpenIddictClientWebIntegrationHandlers.cs +++ b/src/OpenIddict.Client.WebIntegration/OpenIddictClientWebIntegrationHandlers.cs @@ -582,8 +582,8 @@ public static partial class OpenIddictClientWebIntegrationHandlers } /// - /// Contains the logic responsible for attaching custom client credentials - /// parameters to the token request for the providers that require it. + /// Contains the logic responsible for overriding the redirect_uri + /// attached to the token request for the providers that require it. /// public sealed class AdjustRedirectUriInTokenRequest : IOpenIddictClientHandler {