diff --git a/src/Core/Result.Errors.cs b/src/Core/Result.Errors.cs index b37c58a..facef3a 100644 --- a/src/Core/Result.Errors.cs +++ b/src/Core/Result.Errors.cs @@ -96,9 +96,11 @@ public static Result Unauthorized(IEnumerable errors) /// /// Represents a situation where a user does not have valid authentication credentials for the target resource. /// + /// + /// Similar to Forbidden, but specifically for use when authentication is required and has failed or has not yet been provided. + /// /// A general description of the error. /// A collection of errors. - /// public static Result Unauthorized(string message, IEnumerable errors) => new() { IsSuccess = false,