Skip to content

Commit 431e625

Browse files
committed
Fixed issue causing invalid HTML due to spurious </p>.
1 parent 5e2e3b1 commit 431e625

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/groupdef.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1058,8 +1058,8 @@ void GroupDefImpl::writePageDocumentation(OutputList &ol)
10581058
ol.endSection(si->label(),SectionType::Subsection);
10591059
}
10601060
ol.startTextBlock();
1061-
ol.generateDoc(pd->docFile(),pd->docLine(),pd,nullptr,(pd->documentation()+pd->inbodyDocumentation()),TRUE,FALSE,
1062-
QCString(),TRUE,FALSE);
1061+
ol.generateDoc(pd->docFile(),pd->docLine(),pd,nullptr,(pd->documentation()+pd->inbodyDocumentation()),true,false,
1062+
QCString(),false,false);
10631063
ol.endTextBlock();
10641064
}
10651065
}

0 commit comments

Comments
 (0)