[前][次][番号順一覧][スレッド一覧]

ruby-changes:9680

From: matz <ko1@a...>
Date: Thu, 1 Jan 2009 07:43:56 +0900 (JST)
Subject: [ruby-changes:9680] Ruby:r21221 (trunk): * lib/singleton.rb: fix indentation of RDoc text.

matz	2009-01-01 07:43:41 +0900 (Thu, 01 Jan 2009)

  New Revision: 21221

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=21221

  Log:
    * lib/singleton.rb: fix indentation of RDoc text.  [ruby-core:21029]

  Modified files:
    trunk/ChangeLog
    trunk/lib/singleton.rb

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 21220)
+++ ChangeLog	(revision 21221)
@@ -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: lib/singleton.rb
===================================================================
--- lib/singleton.rb	(revision 21220)
+++ lib/singleton.rb	(revision 21221)
@@ -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/

[前][次][番号順一覧][スレッド一覧]