Skip to content

Commit

Permalink
[fix] parser ignoring lines
Browse files Browse the repository at this point in the history
due to 0c03560
  • Loading branch information
Mc-Zen committed Mar 3, 2025
1 parent a41a7e0 commit d95a605
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/new-parser.typ
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@
// trim only doc-comment lines
let l = line.trim(at: start)
if l.starts-with("///") { l }
else { line }
else { line.trim(at: end) }
})

let module-description = none
Expand Down

0 comments on commit d95a605

Please sign in to comment.