1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/gserver.rb: fixed type in sample code. a report from Oleg

Puchinin.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@20492 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2008-12-04 07:17:27 +00:00
parent c69b59c43f
commit 8a8226fa3b
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
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 14:54:32 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
* lib/rubygems/local_remote_options.rb (Gem#add_update_sources_option):

View file

@ -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
#