Actions
Bug #3169
closedRDoc crossref confused by instance and class methods having same name
Bug #3169:
RDoc crossref confused by instance and class methods having same name
Description
=begin
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
=end
Actions