From 19901a9d9c34ac8fa3a95e7e38f1fcc7e08ac43d Mon Sep 17 00:00:00 2001 From: Akinori MUSHA Date: Thu, 28 Mar 2013 00:37:35 +0900 Subject: [PATCH] Edit rdoc. --- lib/http/cookie.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/http/cookie.rb b/lib/http/cookie.rb index b5e2573..ef12ecb 100644 --- a/lib/http/cookie.rb +++ b/lib/http/cookie.rb @@ -392,7 +392,7 @@ class HTTP::Cookie # Returns the domain attribute value as a DomainName object. attr_reader :domain_name - # The domain flag. + # The domain flag. (the opposite of host-only-flag) # # If this flag is true, this cookie will be sent to any host in the # \#domain, including the host domain itself. If it is false, this @@ -423,20 +423,20 @@ class HTTP::Cookie @origin = origin end - # The secure flag. + # The secure flag. (secure-only-flag) # # A cookie with this flag on should only be sent via a secure # protocol like HTTPS. attr_accessor :secure alias secure? secure - # The HttpOnly flag. + # The HttpOnly flag. (http-only-flag) # # A cookie with this flag on should be hidden from a client script. attr_accessor :httponly alias httponly? httponly - # The session flag. + # The session flag. (the opposite of persistent-flag) # # A cookie with this flag on should be hidden from a client script. attr_reader :session