summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-01-06 14:00:54 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-01-06 14:00:54 +0000
commitb5f72bc6cb12301a5bc0dfdaf54d1d3d23c7948d (patch)
tree3377751600ae0fbdebe4a5f234604853f9c3c394 /lib
parent6608596896a8acf92401fdb2530d16b93f2ffd90 (diff)
downloadruby-b5f72bc6cb12301a5bc0dfdaf54d1d3d23c7948d.tar.gz
ruby-b5f72bc6cb12301a5bc0dfdaf54d1d3d23c7948d.tar.xz
ruby-b5f72bc6cb12301a5bc0dfdaf54d1d3d23c7948d.zip
* eval.c (rb_mod_modfunc): should break if m has no super class.
[ruby-dev:22498] * backport changes from 1.9 git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@5391 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/cgi/session.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/cgi/session.rb b/lib/cgi/session.rb
index 4ad6bf2a6..10266b56f 100644
--- a/lib/cgi/session.rb
+++ b/lib/cgi/session.rb
@@ -209,8 +209,8 @@ class CGI
# session id is stored in a cookie.
#
# session_expires:: the time the current session expires, as a
- # +Time+ object. If not set, the session will continue
- # indefinitely.
+ # +Time+ object. If not set, the session will terminate
+ # when the user's browser is closed.
# session_domain:: the hostname domain for which this session is valid.
# If not set, defaults to the hostname of the server.
# session_secure:: if +true+, this session will only work over HTTPS.