diff options
author | kazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-08-02 15:10:38 +0000 |
---|---|---|
committer | kazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-08-02 15:10:38 +0000 |
commit | 42fbe19fa8fdd8d67902a95f8e9ff1518867a9ee (patch) | |
tree | 3849374dadcd5c5b0e4b8961907f0fb55f624293 /lib | |
parent | bc5d11bc039b6b4833bc7c9fec5b4e7de741482a (diff) |
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.rb | 2 |
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. |