From d73d95f1d4a18c63787649877f45ff1ee406f297 Mon Sep 17 00:00:00 2001 From: Tornike Kharaishvili Date: Mon, 10 Dec 2018 08:29:40 +0400 Subject: [PATCH] CookieSecurePolicy documentation update (#3670) (#4542) --- src/Http/Http.Abstractions/src/CookieSecurePolicy.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Http/Http.Abstractions/src/CookieSecurePolicy.cs b/src/Http/Http.Abstractions/src/CookieSecurePolicy.cs index af32d851b0..475e3f6129 100644 --- a/src/Http/Http.Abstractions/src/CookieSecurePolicy.cs +++ b/src/Http/Http.Abstractions/src/CookieSecurePolicy.cs @@ -11,7 +11,7 @@ namespace Microsoft.AspNetCore.Http /// /// If the URI that provides the cookie is HTTPS, then the cookie will only be returned to the server on /// subsequent HTTPS requests. Otherwise if the URI that provides the cookie is HTTP, then the cookie will - /// be returned to the server on all HTTP and HTTPS requests. This is the default value because it ensures + /// be returned to the server on all HTTP and HTTPS requests. This value ensures /// HTTPS for all authenticated requests on deployed servers, and also supports HTTP for localhost development /// and for servers that do not have HTTPS support. ///