Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix lack of unique in kind column on routines page
  • Loading branch information
gfldex committed Jul 10, 2016
1 parent d1533bb commit f45293b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htmlify.p6
Expand Up @@ -850,7 +850,7 @@ sub write-main-index(:$kind, :&summary = {Nil}) {
pod-table($*DR.lookup($kind, :by<kind>)\
.categorize(*.name).sort(*.key)>>.value
.map({[
.map({.subkinds // Nil}).unique.join(', '),
.map({.subkinds // Nil}).flat.unique.join(', '),
pod-link(.[0].name, .[0].url),
.&summary
]})
Expand Down

0 comments on commit f45293b

Please sign in to comment.