diff options
Diffstat (limited to 'std/http/cookie.ts')
-rw-r--r-- | std/http/cookie.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/http/cookie.ts b/std/http/cookie.ts index c48a94d95..486afd6c6 100644 --- a/std/http/cookie.ts +++ b/std/http/cookie.ts @@ -178,7 +178,7 @@ export function setCookie(res: { headers?: Headers }, cookie: Cookie): void { if (!res.headers) { res.headers = new Headers(); } - // TODO (zekth) : Add proper parsing of Set-Cookie headers + // TODO(zekth) : Add proper parsing of Set-Cookie headers // Parsing cookie headers to make consistent set-cookie header // ref: https://tools.ietf.org/html/rfc6265#section-4.1.1 const v = toString(cookie); |