vdoc: remove 's' between paragraphs (#7811)

pull/7755/head^2
Lukas Neubert 2021-01-02 18:52:45 +01:00 committed by GitHub
parent b3de003302
commit 9980de39c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -405,7 +405,7 @@ fn doc_node_html(dd doc.DocNode, link string, head bool, tb &table.Table) string
sym_name := get_sym_name(dd)
node_id := get_node_id(dd)
hash_link := if !head { ' <a href="#$node_id">#</a>' } else { '' }
dnw.writeln('${tabs[1]}s<section id="$node_id" class="doc-node$node_class">')
dnw.writeln('${tabs[1]}<section id="$node_id" class="doc-node$node_class">')
if dd.name.len > 0 {
if dd.kind == .const_group {
dnw.write('${tabs[2]}<div class="title"><$head_tag>$sym_name$hash_link</$head_tag>')