summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--class.c2
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 4911798de1..cd943789c3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Wed May 12 11:51:08 2004 Dave Thomas <dave@pragprog.com>
+
+ * class.c (rb_obj_singleton_methods): fix rdoc
+
Mon May 10 22:28:14 2004 Minero Aoki <aamine@loveruby.net>
* lib/net/protocol.rb (each_crlf_line): remove junk line.
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"]