Skip to content

Commit

Permalink
commit miss
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5203 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
dave committed Dec 16, 2003
1 parent bc8c73c commit a366e19
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/rdoc/ri/ri_cache.rb
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,9 @@ def full_name
# is a class method or not, otherwise we only return
# those methods that match
def local_methods_matching(name, is_class_method)

list = case is_class_method
when nil then @class_methods + @instance
when nil then @class_methods + @instance_methods
when true then @class_methods
when false then @instance_methods
else fail "Unknown is_class_method"
Expand Down

0 comments on commit a366e19

Please sign in to comment.