diff --git a/src/Microsoft.AspNetCore.Http.Abstractions/CookieBuilder.cs b/src/Microsoft.AspNetCore.Http.Abstractions/CookieBuilder.cs index bbb97f3318..f0cdc3adf1 100644 --- a/src/Microsoft.AspNetCore.Http.Abstractions/CookieBuilder.cs +++ b/src/Microsoft.AspNetCore.Http.Abstractions/CookieBuilder.cs @@ -58,11 +58,10 @@ namespace Microsoft.AspNetCore.Http /// /// The policy that will be used to determine . - /// This is determined from the passed to . + /// This is determined from the passed to . /// public virtual CookieSecurePolicy SecurePolicy { get; set; } - /// /// Gets or sets the lifespan of a cookie. /// @@ -73,7 +72,7 @@ namespace Microsoft.AspNetCore.Http /// /// The . /// The cookie options. - public virtual CookieOptions Build(HttpContext context) => Build(context, DateTimeOffset.Now); + public CookieOptions Build(HttpContext context) => Build(context, DateTimeOffset.Now); /// /// Creates the cookie options from the given with an expiration based on and .