From 5d071fe3818f94b90559f2b5328c009553fc5a11 Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 29 Apr 2015 13:22:34 +0000 Subject: cookie.rb: trailing comma * lib/cgi/cookie.rb: add trailing comma for further lines. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50401 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/cgi/cookie.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'lib/cgi/cookie.rb') diff --git a/lib/cgi/cookie.rb b/lib/cgi/cookie.rb index 3ec884dffb..f74ba13764 100644 --- a/lib/cgi/cookie.rb +++ b/lib/cgi/cookie.rb @@ -11,11 +11,11 @@ class CGI # cookie1 = CGI::Cookie.new("name", "value1", "value2", ...) # cookie1 = CGI::Cookie.new("name" => "name", "value" => "value") # cookie1 = CGI::Cookie.new('name' => 'name', - # 'value' => ['value1', 'value2', ...], - # 'path' => 'path', # optional - # 'domain' => 'domain', # optional - # 'expires' => Time.now, # optional - # 'secure' => true # optional + # 'value' => ['value1', 'value2', ...], + # 'path' => 'path', # optional + # 'domain' => 'domain', # optional + # 'expires' => Time.now, # optional + # 'secure' => true, # optional # ) # # cgi.out("cookie" => [cookie1, cookie2]) { "string" } -- cgit v1.2.3