Update a comment.

This commit is contained in:
Akinori MUSHA 2013-04-21 19:28:12 +09:00
parent 90e19a2ac0
commit 1dd16745e3

View file

@ -288,7 +288,9 @@ class HTTP::Cookie
case aname
when 'domain'
cookie.for_domain = true
cookie.domain = avalue # This may negate @for_domain
# The following may negate @for_domain if the value is
# an eTLD or IP address, hence this order.
cookie.domain = avalue
when 'path'
cookie.path = avalue
when 'expires'