Skip to content

Commit

Permalink
Fix Issue 8103 - Use case-insensitive sorting for Jump-to lists in th…
Browse files Browse the repository at this point in the history
…e documentation.
  • Loading branch information
AndrejMitrovic committed Apr 23, 2014
1 parent 47999c9 commit ca66719
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion std.ddoc
Expand Up @@ -86,7 +86,7 @@ function listanchors()
values.sort(function(a,b){
return function(aa, bb){
return aa == bb ? 0 : (aa < bb ? -1 : 1);
}(lastName(a), lastName(b));
}(lastName(a).toLowerCase(), lastName(b).toLowerCase());
});

for(var i = 0; i < values.length; i++) {
Expand Down

0 comments on commit ca66719

Please sign in to comment.