summaryrefslogtreecommitdiffstats
path: root/lib/cgi
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-01-02 16:21:26 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-01-02 16:21:26 +0000
commitf2f16d2b2a069d42cf0229fd38000e7a83b0748f (patch)
treedceea3234a395183be7e17858fbbf80ef291e984 /lib/cgi
parent815c3462a5db37ae83fc25f3a6dba382af2beb71 (diff)
downloadruby-f2f16d2b2a069d42cf0229fd38000e7a83b0748f.tar.gz
ruby-f2f16d2b2a069d42cf0229fd38000e7a83b0748f.tar.xz
ruby-f2f16d2b2a069d42cf0229fd38000e7a83b0748f.zip
* dir.c: merge tuning from H.Yamamoto <ocean@m2.ccsnet.ne.jp>.
[ruby-dev:22476] * io.c (argf_eof): ARGF.eof? should not have any side effect. [ruby-dev:22469] * io.c (argf_each_byte): should return self. [ruby-dev:22465] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5365 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/cgi')
-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..7115cae7d 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.