summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2018-10-22 18:40:50 (GMT)
committerGitHub <noreply@github.com>2018-10-22 18:40:50 (GMT)
commit2c1243302fddc162ce72d0469227b5cabb375f7f (patch)
tree9fed4b4d4e7a06018dad1dffe29f8729542a3de1 /src
parentb25d2dba3a0a0acd02cf3c28aa5dd60be628b56a (diff)
parent6c1b3353e9b622f9117e95c2ac99d395a32b0049 (diff)
downloadDoxygen-2c1243302fddc162ce72d0469227b5cabb375f7f.zip
Doxygen-2c1243302fddc162ce72d0469227b5cabb375f7f.tar.gz
Doxygen-2c1243302fddc162ce72d0469227b5cabb375f7f.tar.bz2
Merge pull request #6556 from arm-in/master
Typos found by running "codespell"
Diffstat (limited to 'src')
-rw-r--r--src/docbookgen.cpp2
-rw-r--r--src/dot.cpp2
-rw-r--r--src/sqlite3gen.cpp2
-rw-r--r--src/xmlgen.cpp2
4 files changed, 4 insertions, 4 deletions
diff --git a/src/docbookgen.cpp b/src/docbookgen.cpp
index bfec8bf..9398f59 100644
--- a/src/docbookgen.cpp
+++ b/src/docbookgen.cpp
@@ -1259,7 +1259,7 @@ static void writeInnerNamespaces(const NamespaceSDict *nl,FTextStream &t)
}
for (nli.toFirst();(nd=nli.current());++nli)
{
- if (!nd->isHidden() && nd->name().find('@')==-1) // skip anonymouse scopes
+ if (!nd->isHidden() && nd->name().find('@')==-1) // skip anonymous scopes
{
t << " <para>" << endl;
t << " <itemizedlist>" << endl;
diff --git a/src/dot.cpp b/src/dot.cpp
index 5f52210..f07a365 100644
--- a/src/dot.cpp
+++ b/src/dot.cpp
@@ -139,7 +139,7 @@ static const char svgZoomFooter[] =
" <path fill=\"none\" stroke=\"white\" stroke-width=\"1.5\" d=\"M0,-3.0v7 M-2.5,-0.5L0,-3.0L2.5,-0.5\"/>\n"
" </g>\n"
" </g>\n"
-// link to orginial SVG
+// link to original SVG
" <svg viewBox=\"0 0 15 15\" width=\"100%\" height=\"30px\" preserveAspectRatio=\"xMaxYMin meet\">\n"
" <g id=\"arrow_out\" transform=\"scale(0.3 0.3)\">\n"
" <a xlink:href=\"$orgname\" target=\"_base\">\n"
diff --git a/src/sqlite3gen.cpp b/src/sqlite3gen.cpp
index 6cd9581..0d7843a 100644
--- a/src/sqlite3gen.cpp
+++ b/src/sqlite3gen.cpp
@@ -812,7 +812,7 @@ static void writeInnerNamespaces(const NamespaceSDict *nl)
NamespaceDef *nd;
for (nli.toFirst();(nd=nli.current());++nli)
{
- if (!nd->isHidden() && nd->name().find('@')==-1) // skip anonymouse scopes
+ if (!nd->isHidden() && nd->name().find('@')==-1) // skip anonymous scopes
{
int refid = insertRefid(nd->getOutputFileBase());
bindIntParameter(innernamespace_insert,":refid",refid);
diff --git a/src/xmlgen.cpp b/src/xmlgen.cpp
index be866a2..06e0418 100644
--- a/src/xmlgen.cpp
+++ b/src/xmlgen.cpp
@@ -1163,7 +1163,7 @@ static void writeInnerNamespaces(const NamespaceSDict *nl,FTextStream &t)
NamespaceDef *nd;
for (nli.toFirst();(nd=nli.current());++nli)
{
- if (!nd->isHidden() && nd->name().find('@')==-1) // skip anonymouse scopes
+ if (!nd->isHidden() && nd->name().find('@')==-1) // skip anonymous scopes
{
t << " <innernamespace refid=\"" << nd->getOutputFileBase()
<< "\">" << convertToXML(nd->name()) << "</innernamespace>" << endl;