summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJosh Soref <jsoref@users.noreply.github.com>2019-11-12 06:22:55 (GMT)
committerJosh Soref <jsoref@users.noreply.github.com>2019-11-12 06:22:55 (GMT)
commit05aba97840b42f5a65ac4d71f75cb6c28a0d15b0 (patch)
treea9924c1559ce4d17c4e206a40554ac60db423325 /src
parent35bcf5095043298ffd6a4122c1e442f9a43e612e (diff)
downloadDoxygen-05aba97840b42f5a65ac4d71f75cb6c28a0d15b0.zip
Doxygen-05aba97840b42f5a65ac4d71f75cb6c28a0d15b0.tar.gz
Doxygen-05aba97840b42f5a65ac4d71f75cb6c28a0d15b0.tar.bz2
spelling: table
Diffstat (limited to 'src')
-rw-r--r--src/latexgen.cpp2
-rw-r--r--src/vhdldocgen.cpp6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/latexgen.cpp b/src/latexgen.cpp
index 094232f..e70e4bf 100644
--- a/src/latexgen.cpp
+++ b/src/latexgen.cpp
@@ -1936,7 +1936,7 @@ void LatexGenerator::writeNonBreakableSpace(int)
// startDescTable()
// - startDescTableRow()
// - startDescTableTitle()
-// - endDescTabelTitle()
+// - endDescTableTitle()
// - startDescTableData()
// - endDescTableData()
// - endDescTableRow()
diff --git a/src/vhdldocgen.cpp b/src/vhdldocgen.cpp
index 90d4829..fc8460a 100644
--- a/src/vhdldocgen.cpp
+++ b/src/vhdldocgen.cpp
@@ -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);
@@ -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);
@@ -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";