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

* lib/singleton.rb: fix documentation. [ruby-core:21038]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21276 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2009-01-02 14:28:02 +00:00
parent f408202de2
commit 6e959da071
2 changed files with 6 additions and 2 deletions

View file

@ -53,6 +53,10 @@ Fri Jan 2 14:11:07 2009 Tanaka Akira <akr@fsij.org>
* ext/socket/socket.c (ipaddr): follow argument change.
Fri Jan 2 10:20:24 2009 Yukihiro Matsumoto <matz@ruby-lang.org>
* lib/singleton.rb: fix documentation. [ruby-core:21038]
Fri Jan 2 06:43:58 2009 NARUSE, Yui <naruse@ruby-lang.org>
* signal.c (rb_signal_buff_size): defined for check whether signal

View file

@ -10,8 +10,8 @@
# ``the instance'' can be created.
#
# a,b = Klass.instance, Klass.instance
# a == b # => true
# a.new # NoMethodError - new is private ...
# a == b # => true
# Klass.new # NoMethodError - new is private ...
#
# * ``The instance'' is created at instantiation time, in other
# words the first call of Klass.instance(), thus