Skip to content

Commit 9032b85

Browse files
committed
print plugin messages in reverse chronological order
1 parent 0e1e42f commit 9032b85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/UnidocServer/Plugins/Unidoc.PluginMessageList.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ extension Unidoc.PluginMessageList:HTML.OutputStreamable
3030
@inlinable public
3131
static func += (ol:inout HTML.ContentEncoder, self:Self)
3232
{
33-
for message:Unidoc.PluginMessage in self.items
33+
for message:Unidoc.PluginMessage in self.items.reversed()
3434
{
3535
ol[.li]
3636
{

0 commit comments

Comments
 (0)