From d196e785e277452f1382dded08ca12974d29170e Mon Sep 17 00:00:00 2001 From: Matthew Freeman <39219791+m6freeman@users.noreply.github.com> Date: Mon, 8 Mar 2021 11:53:53 -0500 Subject: [PATCH] Update AuthorizeEndpointRequest.cs documentation (#404) Line 63: changed documentation from "scope" to "state" to accurately reflect property --- .../Messages/AuthorizeEndpointRequest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.Owin.Security.OAuth/Messages/AuthorizeEndpointRequest.cs b/src/Microsoft.Owin.Security.OAuth/Messages/AuthorizeEndpointRequest.cs index 422be3681..b815584d9 100644 --- a/src/Microsoft.Owin.Security.OAuth/Messages/AuthorizeEndpointRequest.cs +++ b/src/Microsoft.Owin.Security.OAuth/Messages/AuthorizeEndpointRequest.cs @@ -60,7 +60,7 @@ public AuthorizeEndpointRequest(IReadableStringCollection parameters) public IList Scope { get; private set; } /// - /// The "scope" query string parameter of the Authorize request. May be absent if the client does not require state to be + /// The "state" query string parameter of the Authorize request. May be absent if the client does not require state to be /// included when returning to the RedirectUri. /// public string State { get; set; }