ruby-changes:9694
From: yugui <ko1@a...>
Date: Thu, 1 Jan 2009 15:43:46 +0900 (JST)
Subject: [ruby-changes:9694] Ruby:r21235 (ruby_1_9_1): merges r21221 from trunk into ruby_1_9_1.
yugui 2009-01-01 15:43:27 +0900 (Thu, 01 Jan 2009) New Revision: 21235 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=21235 Log: merges r21221 from trunk into ruby_1_9_1. * lib/singleton.rb: fix indentation of RDoc text. [ruby-core:21029] Modified files: branches/ruby_1_9_1/ChangeLog branches/ruby_1_9_1/lib/singleton.rb Index: ruby_1_9_1/ChangeLog =================================================================== --- ruby_1_9_1/ChangeLog (revision 21234) +++ ruby_1_9_1/ChangeLog (revision 21235) @@ -1,3 +1,7 @@ +Thu Jan 1 07:42:36 2009 Yukihiro Matsumoto <matz@r...> + + * lib/singleton.rb: fix indentation of RDoc text. [ruby-core:21029] + Thu Jan 1 07:16:44 2009 Nobuyoshi Nakada <nobu@r...> * Makefile.in (distclean-ext, realclean-ext): use EXTS as default. Index: ruby_1_9_1/lib/singleton.rb =================================================================== --- ruby_1_9_1/lib/singleton.rb (revision 21234) +++ ruby_1_9_1/lib/singleton.rb (revision 21235) @@ -9,9 +9,9 @@ # * this ensures that only one instance of Klass lets call it # ``the instance'' can be created. # -# a,b = Klass.instance, Klass.instance -# a == b # => true -# a.new # NoMethodError - new is private ... +# a,b = Klass.instance, Klass.instance +# a == b # => true +# a.new # NoMethodError - new is private ... # # * ``The instance'' is created at instantiation time, in other # words the first call of Klass.instance(), thus -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/