summaryrefslogtreecommitdiffstats
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
commit091970e268ffbeed2613dae7ee2f4b489aa9e25b (patch)
tree15cbc5c67bf10a70d73df97c27fbb545024299cc /class.c
parentf361117b5a251a767243d3936eb3091106053548 (diff)
downloadruby-091970e268ffbeed2613dae7ee2f4b489aa9e25b.tar.gz
ruby-091970e268ffbeed2613dae7ee2f4b489aa9e25b.tar.xz
ruby-091970e268ffbeed2613dae7ee2f4b489aa9e25b.zip
fix rdoc
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@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 ab848e5b7..bf0457bb7 100644
--- a/class.c
+++ b/class.c
@@ -747,10 +747,12 @@ rb_class_public_instance_methods(argc, argv, mod)
* a = Single.new
*
* def a.one()
+ * end
*
* class << a
* include Other
* def two()
+ * end
* end
*
* Single.singleton_methods #=> ["four"]