Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove extra "categories/" prefix to example link path
  • Loading branch information
Paul Cochrane committed Apr 5, 2015
1 parent 197b08c commit 9e92e09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Pod/Htmlify.pm6
Expand Up @@ -66,7 +66,7 @@ class Website is export {
}
my $example-title = pod-title-contents($pod, $file-basename);
my $author = pod-author-contents($pod, $file-basename);
my $link = pod-link($file-basename, "categories/$category-key/$file-basename");
my $link = pod-link($file-basename, "$category-key/$file-basename");
my $example = Example.new(
title => $example-title,
author => $author,
Expand Down

0 comments on commit 9e92e09

Please sign in to comment.