From: Marc-Andre Lafortune Date: 2010-04-19T09:40:09+09:00 Subject: [ruby-core:29608] [Bug #3169] RDoc crossref confused by instance and class methods having same name Bug #3169: RDoc crossref confused by instance and class methods having same name http://redmine.ruby-lang.org/issues/show/3169 Author: Marc-Andre Lafortune Status: Assigned, Priority: Low Assigned to: Eric Hodel, Category: lib, Target version: 1.9.2 ruby -v: ruby 1.9.2dev (2010-04-19 trunk 27394) [x86_64-darwin10.3.0] The documentation for the two methods below will both have a reference to X.foo (which appeared first). The "See X#foo" should reference to the instance method instead. class X # The class method. See X#foo def self.foo end # The instance method. See X.foo def foo end end ---------------------------------------- http://redmine.ruby-lang.org