Skip to content

Commit

Permalink
spelling: table
Browse files Browse the repository at this point in the history
  • Loading branch information
jsoref committed Nov 12, 2019
1 parent 35bcf50 commit 05aba97
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/latexgen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1936,7 +1936,7 @@ void LatexGenerator::writeNonBreakableSpace(int)
// startDescTable()
// - startDescTableRow()
// - startDescTableTitle()
// - endDescTabelTitle()
// - endDescTableTitle()
// - startDescTableData()
// - endDescTableData()
// - endDescTableRow()
Expand Down
6 changes: 3 additions & 3 deletions src/vhdldocgen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ static QList<MemberDef>* getPorts(ClassDef *cd);
static void writeVhdlEntityToolTip(FTextStream& t,ClassDef *cd);
static void endDot(FTextStream &t);
static void writeTable(QList<MemberDef>* port,FTextStream & t);
static void endTabel(FTextStream &t);
static void endTable(FTextStream &t);
static void writeClassToDot(FTextStream &t,ClassDef* cd);
static void writeVhdlDotLink(FTextStream &t,const QCString &a,const QCString &b,const QCString &style);
//static void writeVhdlPortToolTip(FTextStream& t,QList<MemberDef>* port,ClassDef *cd);
Expand Down Expand Up @@ -228,7 +228,7 @@ void VhdlDocGen::writeOverview()
startTable(t,cd->name());
writeClassToDot(t,cd);
writeTable(port,t);
endTabel(t);
endTable(t);

// writeVhdlPortToolTip(t,port,cd);
writeVhdlEntityToolTip(t,cd);
Expand Down Expand Up @@ -448,7 +448,7 @@ static void writeColumn(FTextStream &t,MemberDef *md,bool start)
}
}

static void endTabel(FTextStream &t)
static void endTable(FTextStream &t)
{
t << "</TABLE>>\n";
t << "] \n";
Expand Down

0 comments on commit 05aba97

Please sign in to comment.