diff --git a/src/OpenIddict.Server.DataProtection/OpenIddictServerDataProtectionOptions.cs b/src/OpenIddict.Server.DataProtection/OpenIddictServerDataProtectionOptions.cs
index 3c495d31..0b60b72b 100644
--- a/src/OpenIddict.Server.DataProtection/OpenIddictServerDataProtectionOptions.cs
+++ b/src/OpenIddict.Server.DataProtection/OpenIddictServerDataProtectionOptions.cs
@@ -9,7 +9,8 @@ using Microsoft.AspNetCore.DataProtection;
namespace OpenIddict.Server.DataProtection
{
///
- /// Provides various settings needed to configure the OpenIddict server handler.
+ /// Provides various settings needed to configure the OpenIddict
+ /// ASP.NET Core Data Protection server integration.
///
public class OpenIddictServerDataProtectionOptions
{
@@ -22,8 +23,7 @@ namespace OpenIddict.Server.DataProtection
public IDataProtectionProvider DataProtectionProvider { get; set; }
///
- /// Gets or sets the formatter used to read and write Data Protection tokens,
- /// serialized using the same format as the ASP.NET Core authentication tickets.
+ /// Gets or sets the formatter used to read and write Data Protection tokens.
///
public IOpenIddictServerDataProtectionFormatter Formatter { get; set; }
= new OpenIddictServerDataProtectionFormatter();
diff --git a/src/OpenIddict.Validation.DataProtection/OpenIddictValidationDataProtectionBuilder.cs b/src/OpenIddict.Validation.DataProtection/OpenIddictValidationDataProtectionBuilder.cs
index 9f73f73d..3f7e3afa 100644
--- a/src/OpenIddict.Validation.DataProtection/OpenIddictValidationDataProtectionBuilder.cs
+++ b/src/OpenIddict.Validation.DataProtection/OpenIddictValidationDataProtectionBuilder.cs
@@ -68,7 +68,7 @@ namespace Microsoft.Extensions.DependencyInjection
///
/// Configures OpenIddict to use a specific formatter instead of relying on the default instance.
///
- /// The formatter used to read and write tokens.
+ /// The formatter used to read tokens.
/// The .
public OpenIddictValidationDataProtectionBuilder UseFormatter([NotNull] IOpenIddictValidationDataProtectionFormatter formatter)
{
diff --git a/src/OpenIddict.Validation.DataProtection/OpenIddictValidationDataProtectionOptions.cs b/src/OpenIddict.Validation.DataProtection/OpenIddictValidationDataProtectionOptions.cs
index 1234b521..6de8daba 100644
--- a/src/OpenIddict.Validation.DataProtection/OpenIddictValidationDataProtectionOptions.cs
+++ b/src/OpenIddict.Validation.DataProtection/OpenIddictValidationDataProtectionOptions.cs
@@ -9,7 +9,8 @@ using Microsoft.AspNetCore.DataProtection;
namespace OpenIddict.Validation.DataProtection
{
///
- /// Provides various settings needed to configure the OpenIddict validation handler.
+ /// Provides various settings needed to configure the OpenIddict
+ /// ASP.NET Core Data Protection validation integration.
///
public class OpenIddictValidationDataProtectionOptions
{
@@ -22,8 +23,7 @@ namespace OpenIddict.Validation.DataProtection
public IDataProtectionProvider DataProtectionProvider { get; set; }
///
- /// Gets or sets the formatter used to read and write Data Protection tokens,
- /// serialized using the same format as the ASP.NET Core authentication tickets.
+ /// Gets or sets the formatter used to read Data Protection tokens.
///
public IOpenIddictValidationDataProtectionFormatter Formatter { get; set; }
= new OpenIddictValidationDataProtectionFormatter();
diff --git a/src/OpenIddict.Validation.SystemNetHttp/OpenIddictValidationSystemNetHttpHelpers.cs b/src/OpenIddict.Validation.SystemNetHttp/OpenIddictValidationSystemNetHttpHelpers.cs
index ef7d849a..2cce2434 100644
--- a/src/OpenIddict.Validation.SystemNetHttp/OpenIddictValidationSystemNetHttpHelpers.cs
+++ b/src/OpenIddict.Validation.SystemNetHttp/OpenIddictValidationSystemNetHttpHelpers.cs
@@ -10,7 +10,7 @@ using OpenIddict.Validation;
namespace System.Net.Http
{
///
- /// Exposes companion extensions for the OpenIddict/ASP.NET Core integration.
+ /// Exposes companion extensions for the OpenIddict/System.Net.Http integration.
///
public static class OpenIddictValidationSystemNetHttpHelpers
{