Fix CookieOptions.HttpOnly doc comment

This commit is contained in:
Kiran Challa 2016-09-01 10:16:18 -07:00
parent e4afd782e8
commit 30a4b09d9f
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ namespace Microsoft.AspNetCore.Http
/// <summary>
/// Gets or sets a value that indicates whether a cookie is accessible by client-side script.
/// </summary>
/// <returns>true if a cookie is accessible by client-side script; otherwise, false.</returns>
/// <returns>true if a cookie must not be accessible by client-side script; otherwise, false.</returns>
public bool HttpOnly { get; set; }
}
}