We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c832ab commit 133f103Copy full SHA for 133f103
lib/Pod/Htmlify.pm6
@@ -98,7 +98,7 @@ class Website is export {
98
method write-category-indices {
99
say "Creating category index files";
100
my @headers = qw{File Title Author};
101
- for $!categories.categories-table.sort({ $^a.key cmp $^b.key })>>.kv -> ($category-key, $title) {
+ for $!categories.categories-table.sort(*.key)>>.kv -> ($category-key, $title) {
102
my $category = $!categories.category-with-key($category-key);
103
my @examples = $category.examples.values.sort({ $^a.filename cmp $^b.filename });
104
my @rows = @examples.map: {[.pod-link, .title, .author]};
0 commit comments