From 5a446f7ed326e6e4909d2b13206b3d312bf5bace Mon Sep 17 00:00:00 2001 From: MrDave1999 Date: Tue, 24 Oct 2023 14:12:57 -0500 Subject: [PATCH] style: Update comment --- src/Core/Result.Errors.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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,