On Nov 8, 4:32 pm, "David A. Black" <dbl... / rubypal.com> wrote: > class Class > def an_instance_method > puts "I'm an instance method of Class" > end > end > > class C > def a_singleton_method > puts "I'm a singleton method of C" > end > end > > C.an_instance_method > C.a_singleton_method O.o David, I suggest that your example above is missing one of: "self." "C." "class << self...end" wrapper Right? Tell me I'm not insane.