aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-08-02 15:10:38 +0000
committerkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-08-02 15:10:38 +0000
commita0bcd246bf8b4457629067c5dbc656db32e33f11 (patch)
tree3849374dadcd5c5b0e4b8961907f0fb55f624293 /lib
parentbed5d2c20d7db764a0c2ca3639c481914da2d8a9 (diff)
downloadruby-a0bcd246bf8b4457629067c5dbc656db32e33f11.tar.gz
Fix cgi/core code example missing comma
ref https://github.com/rurema/doctree/pull/448 [ci skip] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59469 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/cgi/core.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/cgi/core.rb b/lib/cgi/core.rb
index 5895cf8541..1b5f7ed390 100644
--- a/lib/cgi/core.rb
+++ b/lib/cgi/core.rb
@@ -153,7 +153,7 @@ class CGI
# "language" => "ja",
# "expires" => Time.now + 30,
# "cookie" => [cookie1, cookie2],
- # "my_header1" => "my_value"
+ # "my_header1" => "my_value",
# "my_header2" => "my_value")
#
# This method does not perform charset conversion.