summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2021-03-04 21:18:47 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2021-03-04 21:18:47 (GMT)
commit0281bca362131eddc4e45fbf72ebb6fd37014d65 (patch)
tree3285f648fc7db5a1c0b597b1e8694e92beea2cbe /src
parent2128b9df599a7025d824b2f240ba78358f47d050 (diff)
downloadDoxygen-0281bca362131eddc4e45fbf72ebb6fd37014d65.zip
Doxygen-0281bca362131eddc4e45fbf72ebb6fd37014d65.tar.gz
Doxygen-0281bca362131eddc4e45fbf72ebb6fd37014d65.tar.bz2
Regression: Fix missing '>' for ol tag in the HTML output.
Diffstat (limited to 'src')
-rw-r--r--src/htmldocvisitor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/htmldocvisitor.cpp b/src/htmldocvisitor.cpp
index 2ad0e19..7c56cc1 100644
--- a/src/htmldocvisitor.cpp
+++ b/src/htmldocvisitor.cpp
@@ -957,7 +957,7 @@ void HtmlDocVisitor::visitPre(DocAutoList *l)
// A.
// 1. (repeat)...
//
- m_t << "<ol type=\"" << types[l->depth() % NUM_HTML_LIST_TYPES] << "\"";
+ m_t << "<ol type=\"" << types[l->depth() % NUM_HTML_LIST_TYPES] << "\">";
}
else
{