From 7c1c29605e9c8f5560a9dc3ad25e492a18eefc61 Mon Sep 17 00:00:00 2001 From: dave Date: Wed, 12 May 2004 02:51:54 +0000 Subject: fix rdoc git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6292 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ class.c | 2 ++ 2 files changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index b48e7f9ac..20b90758c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Wed May 12 11:51:08 2004 Dave Thomas + + * class.c (rb_obj_singleton_methods): fix rdoc + Mon May 10 21:44:42 2004 Dave Thomas * lib/rdoc/generators/html_generator.rb: Change scheme for diff --git a/class.c b/class.c index b84ba5278..0e310216d 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"] -- cgit