summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorluz.paz <luzpaz@users.noreply.github.com>2019-09-28 15:14:28 (GMT)
committerluz.paz <luzpaz@users.noreply.github.com>2019-09-28 15:14:28 (GMT)
commit9b9c2c6101be61baefb73b0c414e93381070e21b (patch)
tree89ff1f8931d2eeb5890749b1bd52501f993cdcf1 /src
parent4e21d19cf63b17aadb62905535262deb208a0c73 (diff)
downloadDoxygen-9b9c2c6101be61baefb73b0c414e93381070e21b.zip
Doxygen-9b9c2c6101be61baefb73b0c414e93381070e21b.tar.gz
Doxygen-9b9c2c6101be61baefb73b0c414e93381070e21b.tar.bz2
Fix typos
Found via ``` codespell -q 3 -S *.js,*.po,./src/translator*,*.eps,./doc/changelog.doc -L ang,ans,attribs,ba,behaviour,classe,colour,german,iff,initialise,nam,nd,que,russian,statics,te,tim,uint ```
Diffstat (limited to 'src')
-rw-r--r--src/context.cpp2
-rw-r--r--src/dotgraph.cpp2
-rw-r--r--src/doxygen.cpp2
-rw-r--r--src/fortrancode.l2
-rw-r--r--src/fortranscanner.l2
-rw-r--r--src/memberdef.h2
-rw-r--r--src/portable.cpp2
-rw-r--r--src/pycode.l4
-rw-r--r--src/pyscanner.l6
-rw-r--r--src/scanner.l2
-rw-r--r--src/sortdict.h12
-rw-r--r--src/vhdljjparser.cpp4
12 files changed, 21 insertions, 21 deletions
diff --git a/src/context.cpp b/src/context.cpp
index 1933d43..8b7643a 100644
--- a/src/context.cpp
+++ b/src/context.cpp
@@ -8446,7 +8446,7 @@ TemplateVariant NamespaceMembersIndexContext::get(const char *name) const
//------------------------------------------------------------------------
-//%% struct InheritanceGraph: a connected graph reprenting part of the overall interitance tree
+//%% struct InheritanceGraph: a connected graph reprenting part of the overall inheritance tree
//%% {
class InheritanceGraphContext::Private
{
diff --git a/src/dotgraph.cpp b/src/dotgraph.cpp
index df64d66..bbffaf0 100644
--- a/src/dotgraph.cpp
+++ b/src/dotgraph.cpp
@@ -289,7 +289,7 @@ void DotGraph::writeGraphHeader(FTextStream &t,const QCString &title)
{
t << " // INTERACTIVE_SVG=YES\n";
}
- t << " // LATEX_PDF_SIZE\n"; // write placeholder for LaTeX PDF bounding box size repacement
+ t << " // LATEX_PDF_SIZE\n"; // write placeholder for LaTeX PDF bounding box size replacement
if (Config_getBool(DOT_TRANSPARENT))
{
t << " bgcolor=\"transparent\";" << endl;
diff --git a/src/doxygen.cpp b/src/doxygen.cpp
index 953a5de..7fec2b6 100644
--- a/src/doxygen.cpp
+++ b/src/doxygen.cpp
@@ -2588,7 +2588,7 @@ static MemberDef *addVariableToFile(
addMemberDocs(root,md,def,0,FALSE);
md->setRefItems(root->sli);
// if md is a variable forward declaration and root is the definition that
- // turn md into the defintion
+ // turn md into the definition
if (!root->explicitExternal && md->isExternal())
{
md->setDeclFile(md->getDefFileName(),md->getDefLine(),md->getDefColumn());
diff --git a/src/fortrancode.l b/src/fortrancode.l
index d372299..303bbfb 100644
--- a/src/fortrancode.l
+++ b/src/fortrancode.l
@@ -521,7 +521,7 @@ static bool getGenericProcedureLink(const ClassDef *cd,
return FALSE;
}
-static bool getLink(UseSDict *usedict, // dictonary with used modules
+static bool getLink(UseSDict *usedict, // dictionary with used modules
const char *memberText, // exact member text
CodeOutputInterface &ol,
const char *text)
diff --git a/src/fortranscanner.l b/src/fortranscanner.l
index d75134a..eb798c9 100644
--- a/src/fortranscanner.l
+++ b/src/fortranscanner.l
@@ -1840,7 +1840,7 @@ static QCString extractFromParens(const QCString name)
return extracted;
}
-/*! remove non usefull spaces from bind statement */
+/*! remove unuseful spaces from bind statement */
static QCString extractBind(const QCString name)
{
QCString parensPart = extractFromParens(name);
diff --git a/src/memberdef.h b/src/memberdef.h
index b200833..97bf819 100644
--- a/src/memberdef.h
+++ b/src/memberdef.h
@@ -239,7 +239,7 @@ class MemberDef : virtual public Definition
virtual bool hasCallGraph() const = 0;
virtual bool hasCallerGraph() const = 0;
virtual bool visibleMemberGroup(bool hideNoHeader) const = 0;
- // refrenced related members
+ // referenced related members
virtual bool hasReferencesRelation() const = 0;
virtual bool hasReferencedByRelation() const = 0;
diff --git a/src/portable.cpp b/src/portable.cpp
index 3d64638..c6e829d 100644
--- a/src/portable.cpp
+++ b/src/portable.cpp
@@ -457,7 +457,7 @@ bool portable_isAbsolutePath(const char *fileName)
/**
* Correct a possible wrong PATH variable
*
- * This routine was inspired by the cause for bug 766059 was that in the Windows path there were forward slahes.
+ * This routine was inspired by the cause for bug 766059 was that in the Windows path there were forward slashes.
*/
void portable_correct_path(void)
{
diff --git a/src/pycode.l b/src/pycode.l
index a76129d..8cae0e2 100644
--- a/src/pycode.l
+++ b/src/pycode.l
@@ -1316,7 +1316,7 @@ TARGET ({IDENTIFIER}|"("{TARGET_LIST}")"|"["{TARGET_LIST}"]"|{ATTRIBUT
\\{B}\n { // line continuation
codifyLines(yytext);
}
- \\. { // espaced char
+ \\. { // escaped char
codify(yytext);
}
{STRINGPREFIX}?{TRIDOUBLEQUOTE} { // triple double quotes
@@ -1339,7 +1339,7 @@ TARGET ({IDENTIFIER}|"("{TARGET_LIST}")"|"["{TARGET_LIST}"]"|{ATTRIBUT
\\{B}\n { // line continuation
codifyLines(yytext);
}
- \\. { // espaced char
+ \\. { // escaped char
codify(yytext);
}
{STRINGPREFIX}?{TRISINGLEQUOTE} { // triple single quotes
diff --git a/src/pyscanner.l b/src/pyscanner.l
index 2320bca..33e6867 100644
--- a/src/pyscanner.l
+++ b/src/pyscanner.l
@@ -1619,7 +1619,7 @@ STARTDOCSYMS "##"
incLineNr();
docBlock += yytext;
}
- \\. { // espaced char
+ \\. { // escaped char
docBlock += yytext;
}
. {
@@ -1654,7 +1654,7 @@ STARTDOCSYMS "##"
addToString(yytext);
incLineNr();
}
- \\. { // espaced char
+ \\. { // escaped char
addToString(yytext);
}
"\"\"\"" { // triple double quotes
@@ -1677,7 +1677,7 @@ STARTDOCSYMS "##"
addToString(yytext);
incLineNr();
}
- \\. { // espaced char
+ \\. { // escaped char
addToString(yytext);
}
"'''" { // triple single quotes
diff --git a/src/scanner.l b/src/scanner.l
index 07d5c71..1db7320 100644
--- a/src/scanner.l
+++ b/src/scanner.l
@@ -2001,7 +2001,7 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP})
current->name=removeRedundantWhiteSpace(substitute(yytext,"\\","::"));
//printf("PHP: adding use relation: %s\n",current->name.data());
current->fileName = yyFileName;
- // add a using declaraton
+ // add a using declaration
current->section=Entry::USINGDECL_SEC;
current_root->addSubEntry(current);
current = new Entry(*current);
diff --git a/src/sortdict.h b/src/sortdict.h
index 52eccd3..0e0b5c1 100644
--- a/src/sortdict.h
+++ b/src/sortdict.h
@@ -128,7 +128,7 @@ class SDict
/*! Appends an element to the dictionary. The element is owned by the
* dictionary.
- * \param key The unique key to use to quicky find the item later on.
+ * \param key The unique key to use to quickly find the item later on.
* \param d The compound to add.
* \sa find()
*/
@@ -146,7 +146,7 @@ class SDict
/*! Prepends an element to the dictionary. The element is owned by the
* dictionary.
- * \param key The unique key to use to quicky find the item later on.
+ * \param key The unique key to use to quickly find the item later on.
* \param d The compound to add.
* \sa find()
*/
@@ -190,7 +190,7 @@ class SDict
m_list->sort();
}
/*! Inserts a compound into the dictionary in a sorted way.
- * \param key The unique key to use to quicky find the item later on.
+ * \param key The unique key to use to quickly find the item later on.
* \param d The compound to add.
* \sa find()
*/
@@ -470,7 +470,7 @@ class SIntDict
/*! Appends a compound to the dictionary. The element is owned by the
* dictionary.
- * \param key The unique key to use to quicky find the item later on.
+ * \param key The unique key to use to quickly find the item later on.
* \param d The compound to add.
* \sa find()
*/
@@ -488,7 +488,7 @@ class SIntDict
/*! Prepend a compound to the dictionary. The element is owned by the
* dictionary.
- * \param key The unique key to use to quicky find the item later on.
+ * \param key The unique key to use to quickly find the item later on.
* \param d The compound to add.
* \sa find()
*/
@@ -521,7 +521,7 @@ class SIntDict
}
/*! Inserts a compound into the dictionary in a sorted way.
- * \param key The unique key to use to quicky find the item later on.
+ * \param key The unique key to use to quickly find the item later on.
* \param d The compound to add.
* \sa find()
*/
diff --git a/src/vhdljjparser.cpp b/src/vhdljjparser.cpp
index aeed048..47772f6 100644
--- a/src/vhdljjparser.cpp
+++ b/src/vhdljjparser.cpp
@@ -343,7 +343,7 @@ void VhdlParser::addCompInst(const char *n, const char* instName, const char* co
{
current->args=lastCompound->name; // architecture name
}
- current->includeName=comp; // component/enity/configuration
+ current->includeName=comp; // component/entity/configuration
int u=genLabels.find("|",1);
if (u>0)
{
@@ -584,7 +584,7 @@ void VhdlParser::addProto(const char *s1,const char *s2,const char *s3,
* .....
* library
* package
- * enity zzz
+ * entity zzz
* .....
* and so on..
*/