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
commit227ec51ff288659f022dae00b839195b0c92e732 (patch)
tree15cbc5c67bf10a70d73df97c27fbb545024299cc /class.c
parentf55d6c9298a37f7954cac446ea3c55dbe8d142b3 (diff)
fix rdoc
git-svn-id: svn+ssh://ci.ruby-lang.org/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 ab848e5b7b..bf0457bb75 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"]