[Modify] Polish it

This commit is contained in:
sta 2022-01-29 21:36:02 +09:00
parent d6ce637000
commit 7f916edafa

View File

@ -114,7 +114,7 @@ namespace Example2
s.CookiesValidator = (req, res) => {
// Check the cookies in 'req', and set the cookies to send to
// the client with 'res' if necessary.
foreach (Cookie cookie in req) {
foreach (var cookie in req) {
cookie.Expired = true;
res.Add (cookie);
}