[Docs] Don't sort mixins by name.

This commit is contained in:
Chris Eppstein 2010-05-01 15:20:16 -07:00
parent 2a298ff0f1
commit 7439786ba8

View File

@ -114,7 +114,7 @@ def mixins(item)
comment = nil
end
end
mixins.reject{|m| m.comment =~ /@private/}.sort_by{|m| m.name}
mixins.reject{|m| m.comment =~ /@private/}
end
def constants(item)