summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-12-31 22:43:41 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-12-31 22:43:41 +0000
commit0d2e8c14bb187e5f5a117f6e37a6b4ab34e540e1 (patch)
tree62b1a3245c783dafb69d8e05f2ddb0d843b8d50f /lib
parentfd855a082bc0485dd2f9132a16cd91fd14ba76cb (diff)
* lib/singleton.rb: fix indentation of RDoc text. [ruby-core:21029]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21221 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/singleton.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/singleton.rb b/lib/singleton.rb
index c6a2527d9a..0d9ade3d5e 100644
--- a/lib/singleton.rb
+++ b/lib/singleton.rb
@@ -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