From 7439786ba86b0aeb1a6c4bc45a8eea8ac3c997e2 Mon Sep 17 00:00:00 2001 From: Chris Eppstein Date: Sat, 1 May 2010 15:20:16 -0700 Subject: [PATCH] [Docs] Don't sort mixins by name. --- doc-src/lib/stylesheets.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc-src/lib/stylesheets.rb b/doc-src/lib/stylesheets.rb index 395e481e..28c8186f 100644 --- a/doc-src/lib/stylesheets.rb +++ b/doc-src/lib/stylesheets.rb @@ -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)