diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-12-04 07:27:34 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-12-04 07:27:34 +0000 |
| commit | fbdf8cb879cf8d6697f6a711cd07c940352bda88 (patch) | |
| tree | 7f6a976f3a90c459c9cd4b1408851fc508b82cc1 | |
| parent | ffe57003cced19304faa62ae96d00ff55392b430 (diff) | |
* lib/gserver.rb: fixed type in sample code. a report from Oleg
Puchinin.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@20495 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | lib/gserver.rb | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -4,6 +4,11 @@ Thu Dec 4 16:19:18 2008 Yukihiro Matsumoto <matz@ruby-lang.org> OpenSSL::SSL::SSLSocket should implement read_nonblock. a patch from Aaron Patterson in [ruby-core:20277]. fix: #814 [ruby-core:20241] +Thu Dec 4 16:16:09 2008 Yukihiro Matsumoto <matz@ruby-lang.org> + + * lib/gserver.rb: fixed type in sample code. a report from Oleg + Puchinin. + Thu Dec 4 06:04:16 2008 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp> * ext/tk/lib/tk/menu.rb: TkOptionMenubutton.new fails to treat diff --git a/lib/gserver.rb b/lib/gserver.rb index eb5f31b7b3..592e8661fe 100644 --- a/lib/gserver.rb +++ b/lib/gserver.rb @@ -40,7 +40,7 @@ require "thread" # super(port, *args) # end # def serve(io) -# io.puts(Time.now.to_i) +# io.puts(Time.now.to_s) # end # end # |
