Skip to content

Commit

Permalink
Bug 757621 - unclosed tag, c# generics method with where
Browse files Browse the repository at this point in the history
In the routine the <dd> tag is used to do an indentation in the <dl> section, this <dd> was not closed in endConstraintList.
Problem existed from the beginning (version Release-1.5.2-20070719, commit 29a8f14)
  • Loading branch information
albert-github committed Nov 7, 2015
1 parent e2dd835 commit 1bb819f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/htmlgen.cpp
Expand Up @@ -2420,6 +2420,7 @@ void HtmlGenerator::endConstraintDocs()
void HtmlGenerator::endConstraintList() void HtmlGenerator::endConstraintList()
{ {
t << "</table>" << endl; t << "</table>" << endl;
t << "</dd>" << endl;
t << "</dl>" << endl; t << "</dl>" << endl;
t << "</div>" << endl; t << "</div>" << endl;
} }
Expand Down

0 comments on commit 1bb819f

Please sign in to comment.