summaryrefslogtreecommitdiff
path: root/class.c
diff options
context:
space:
mode:
authordave <dave@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-05-12 02:51:54 +0000
committerdave <dave@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-05-12 02:51:54 +0000
commitabecb52a71af035d1dd2442e3aed843f52371cf6 (patch)
tree7bbc60be29246fe3d31974af7a87794a01e7287a /class.c
parent833fd608781b7fb5d1bd06814f431329bb9e232a (diff)
fix rdoc
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@6292 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'class.c')
-rw-r--r--class.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/class.c b/class.c
index b84ba52784..0e310216da 100644
--- a/class.c
+++ b/class.c
@@ -747,10 +747,12 @@ rb_class_public_instance_methods(argc, argv, mod)
* def a.one()
*
* class << a
+ * end
* include Other
* def two()
* end
*
+ * end
* Single.singleton_methods #=> ["four"]
* a.singleton_methods #=> ["two", "one"]
* a.singleton_methods(true) #=> ["two", "one", "three"]