From: Gary Wright Date: 2007-11-09T08:47:55+09:00 Subject: Re: 'Class.inherited' v. 'inherited' syntax inside Class On Nov 8, 2007, at 6:32 PM, David A. Black wrote: > class C > def a_singleton_method > puts "I'm a singleton method of C" > end > end I think David meant: > class C > def self.a_singleton_method # <--- note self > puts "I'm a singleton method of C" > end > end Gary Wright