diff --git a/src/OpenIddict.Abstractions/OpenIddictResources.resx b/src/OpenIddict.Abstractions/OpenIddictResources.resx
index f8a9f3c2b..2222dda25 100644
--- a/src/OpenIddict.Abstractions/OpenIddictResources.resx
+++ b/src/OpenIddict.Abstractions/OpenIddictResources.resx
@@ -489,7 +489,7 @@ This may indicate that it was not properly registered in the dependency injectio
This may indicate that an instance of another handler was registered with the same scheme.
- The OpenIddict ASP.NET Core server cannot be used as the default scheme handler.
+ The OpenIddict ASP.NET Core server handler cannot be used as the default scheme handler.
Make sure that neither DefaultAuthenticateScheme, DefaultChallengeScheme, DefaultForbidScheme, DefaultSignInScheme, DefaultSignOutScheme nor DefaultScheme point to an instance of the OpenIddict ASP.NET Core server handler.
@@ -712,7 +712,7 @@ To register the OpenIddict core services, reference the 'OpenIddict.Core' packag
This may indicate that an instance of another handler was registered with the same scheme.
- The OpenIddict ASP.NET Core validation cannot be used as the default sign-in/sign-out handler.
+ The OpenIddict ASP.NET Core validation handler cannot be used as the default sign-in/sign-out handler.
Make sure that neither DefaultSignInScheme nor DefaultSignOutScheme point to an instance of the OpenIddict ASP.NET Core validation handler.
diff --git a/src/OpenIddict.Server.Owin/OpenIddictServerOwinMiddleware.cs b/src/OpenIddict.Server.Owin/OpenIddictServerOwinMiddleware.cs
index 084aa6c42..c05f1ea32 100644
--- a/src/OpenIddict.Server.Owin/OpenIddictServerOwinMiddleware.cs
+++ b/src/OpenIddict.Server.Owin/OpenIddictServerOwinMiddleware.cs
@@ -11,7 +11,7 @@
namespace OpenIddict.Server.Owin
{
///
- /// Provides the entry point necessary to register the OpenIddict server in an OWIN pipeline.
+ /// Provides the entry point necessary to register the OpenIddict server handler in an OWIN pipeline.
/// Note: this middleware is intented to be used with dependency injection containers
/// that support middleware resolution, like Autofac. Since it depends on scoped services,
/// it is NOT recommended to instantiate it as a singleton like a regular OWIN middleware.
diff --git a/src/OpenIddict.Validation.Owin/OpenIddictValidationOwinMiddleware.cs b/src/OpenIddict.Validation.Owin/OpenIddictValidationOwinMiddleware.cs
index 4b9e23ba6..a02384bf6 100644
--- a/src/OpenIddict.Validation.Owin/OpenIddictValidationOwinMiddleware.cs
+++ b/src/OpenIddict.Validation.Owin/OpenIddictValidationOwinMiddleware.cs
@@ -11,7 +11,7 @@
namespace OpenIddict.Validation.Owin
{
///
- /// Provides the entry point necessary to register the OpenIddict validation in an OWIN pipeline.
+ /// Provides the entry point necessary to register the OpenIddict validation handler in an OWIN pipeline.
/// Note: this middleware is intented to be used with dependency injection containers
/// that support middleware resolution, like Autofac. Since it depends on scoped services,
/// it is NOT recommended to instantiate it as a singleton like a regular OWIN middleware.