From 745120b5024e7a7ca6e5fe1fca305edbcafd71be Mon Sep 17 00:00:00 2001 From: Lubomyr <161510716+lubomyr-maievskyi@users.noreply.github.com> Date: Wed, 5 Jun 2024 12:41:14 +0200 Subject: [PATCH] Fix: Correct documentation for Users property - fix Correct documentation for Users property in AuthorizeAttribute class --- src/System.Web.Http/AuthorizeAttribute.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/System.Web.Http/AuthorizeAttribute.cs b/src/System.Web.Http/AuthorizeAttribute.cs index 00afd6c35..bb9aed10e 100644 --- a/src/System.Web.Http/AuthorizeAttribute.cs +++ b/src/System.Web.Http/AuthorizeAttribute.cs @@ -63,7 +63,7 @@ public override object TypeId /// /// The users string. /// - /// Multiple role names can be specified using the comma character as a separator. + /// Multiple user names can be specified using the comma character as a separator. public string Users { get { return _users ?? String.Empty; }