diff --git a/src/OpenIddict.Core/Managers/OpenIddictScopeManager.cs b/src/OpenIddict.Core/Managers/OpenIddictScopeManager.cs
index 644e7b23..e689df1b 100644
--- a/src/OpenIddict.Core/Managers/OpenIddictScopeManager.cs
+++ b/src/OpenIddict.Core/Managers/OpenIddictScopeManager.cs
@@ -153,13 +153,13 @@ namespace OpenIddict.Core
}
///
- /// Retrieves an authorization using its unique identifier.
+ /// Retrieves a scope using its unique identifier.
///
- /// The unique identifier associated with the authorization.
+ /// The unique identifier associated with the scope.
/// The that can be used to abort the operation.
///
/// A that can be used to monitor the asynchronous operation,
- /// whose result returns the authorization corresponding to the identifier.
+ /// whose result returns the scope corresponding to the identifier.
///
public virtual Task FindByIdAsync([NotNull] string identifier, CancellationToken cancellationToken)
{
diff --git a/src/OpenIddict.Core/Stores/IOpenIddictScopeStore.cs b/src/OpenIddict.Core/Stores/IOpenIddictScopeStore.cs
index 4d3c7329..9b603639 100644
--- a/src/OpenIddict.Core/Stores/IOpenIddictScopeStore.cs
+++ b/src/OpenIddict.Core/Stores/IOpenIddictScopeStore.cs
@@ -62,13 +62,13 @@ namespace OpenIddict.Core
Task DeleteAsync([NotNull] TScope scope, CancellationToken cancellationToken);
///
- /// Retrieves an authorization using its unique identifier.
+ /// Retrieves a scope using its unique identifier.
///
- /// The unique identifier associated with the authorization.
+ /// The unique identifier associated with the scope.
/// The that can be used to abort the operation.
///
/// A that can be used to monitor the asynchronous operation,
- /// whose result returns the authorization corresponding to the identifier.
+ /// whose result returns the scope corresponding to the identifier.
///
Task FindByIdAsync([NotNull] string identifier, CancellationToken cancellationToken);
diff --git a/src/OpenIddict.Core/Stores/OpenIddictScopeStore.cs b/src/OpenIddict.Core/Stores/OpenIddictScopeStore.cs
index 1591f97e..7cb7dd6a 100644
--- a/src/OpenIddict.Core/Stores/OpenIddictScopeStore.cs
+++ b/src/OpenIddict.Core/Stores/OpenIddictScopeStore.cs
@@ -71,13 +71,13 @@ namespace OpenIddict.Core
public abstract Task DeleteAsync([NotNull] TScope scope, CancellationToken cancellationToken);
///
- /// Retrieves an authorization using its unique identifier.
+ /// Retrieves a scope using its unique identifier.
///
- /// The unique identifier associated with the authorization.
+ /// The unique identifier associated with the scope.
/// The that can be used to abort the operation.
///
/// A that can be used to monitor the asynchronous operation,
- /// whose result returns the authorization corresponding to the identifier.
+ /// whose result returns the scope corresponding to the identifier.
///
public virtual Task FindByIdAsync([NotNull] string identifier, CancellationToken cancellationToken)
{
diff --git a/src/OpenIddict.EntityFramework/Stores/OpenIddictScopeStore.cs b/src/OpenIddict.EntityFramework/Stores/OpenIddictScopeStore.cs
index 4cad07cd..e85f866a 100644
--- a/src/OpenIddict.EntityFramework/Stores/OpenIddictScopeStore.cs
+++ b/src/OpenIddict.EntityFramework/Stores/OpenIddictScopeStore.cs
@@ -135,13 +135,13 @@ namespace OpenIddict.EntityFramework
}
///
- /// Retrieves an authorization using its unique identifier.
+ /// Retrieves a scope using its unique identifier.
///
- /// The unique identifier associated with the authorization.
+ /// The unique identifier associated with the scope.
/// The that can be used to abort the operation.
///
/// A that can be used to monitor the asynchronous operation,
- /// whose result returns the authorization corresponding to the identifier.
+ /// whose result returns the scope corresponding to the identifier.
///
public override Task FindByIdAsync([NotNull] string identifier, CancellationToken cancellationToken)
{
diff --git a/src/OpenIddict.EntityFrameworkCore/Stores/OpenIddictScopeStore.cs b/src/OpenIddict.EntityFrameworkCore/Stores/OpenIddictScopeStore.cs
index 536f7af3..24f857d6 100644
--- a/src/OpenIddict.EntityFrameworkCore/Stores/OpenIddictScopeStore.cs
+++ b/src/OpenIddict.EntityFrameworkCore/Stores/OpenIddictScopeStore.cs
@@ -135,13 +135,13 @@ namespace OpenIddict.EntityFrameworkCore
}
///
- /// Retrieves an authorization using its unique identifier.
+ /// Retrieves a scope using its unique identifier.
///
- /// The unique identifier associated with the authorization.
+ /// The unique identifier associated with the scope.
/// The that can be used to abort the operation.
///
/// A that can be used to monitor the asynchronous operation,
- /// whose result returns the authorization corresponding to the identifier.
+ /// whose result returns the scope corresponding to the identifier.
///
public override Task FindByIdAsync([NotNull] string identifier, CancellationToken cancellationToken)
{