unterminated_comment
Diagnostic `nanook::template::unterminated_comment`
Summary
unterminated `{{#` comment
Help
close the comment with #}}
Details
When this fires
A {# comment opened and the template ended (or got too far) without a matching #}. The lexer scans to end-of-input looking for the close tag and gives up. Caught by nanook check.
What to check
Comments don't nest, so a {# inside another comment will be ignored as text and the outer #} will close it.
broken: {# TODO: revisit this template
fixed: {# TODO: revisit this template #}