aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-14 02:51:34 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-14 02:51:34 +0000
commitbf308ac3e9959f577154a5dc40147b73848f5223 (patch)
tree2bae2e50339eb04949c8161e73b1b045344c29d7 /lib
parent77420798eb4a3ed98e7b6b377380eafa6f03009a (diff)
downloadruby-bf308ac3e9959f577154a5dc40147b73848f5223.tar.gz
* lib/cgi.rb: fix a typo in documentation.
[ci skip][fix GH-1140] Patch by @jutaz git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53104 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/cgi.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/cgi.rb b/lib/cgi.rb
index ae73fe37f6..51f465ea18 100644
--- a/lib/cgi.rb
+++ b/lib/cgi.rb
@@ -80,7 +80,7 @@
#
# For instance, suppose the request contains the parameter
# "favourite_colours" with the multiple values "blue" and "green". The
-# following behaviour would occur:
+# following behavior would occur:
#
# cgi.params["favourite_colours"] # => ["blue", "green"]
# cgi["favourite_colours"] # => "blue"