summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorluzpaz <kunda@scribus.net>2017-12-23 16:50:49 (GMT)
committerluzpaz <kunda@scribus.net>2017-12-23 16:52:14 (GMT)
commit9fd7f3aeb4c2e78bda669bf4ef6fff1c12c062a4 (patch)
tree998cae2d5a219eb49b12903500d5692fe5fbe3c3 /src
parent4f45bd20d4da7d40c793ec4c4c13558581e995ac (diff)
downloadDoxygen-9fd7f3aeb4c2e78bda669bf4ef6fff1c12c062a4.zip
Doxygen-9fd7f3aeb4c2e78bda669bf4ef6fff1c12c062a4.tar.gz
Doxygen-9fd7f3aeb4c2e78bda669bf4ef6fff1c12c062a4.tar.bz2
Misc. typos
Super trivial typos Some are in qtools/ which I know is a 3rd party dependency but as we know is now obsolete upstream. I reckon it wouldn't be much of an issue to merge neverthless Tacked on several more commits
Diffstat (limited to 'src')
-rw-r--r--src/cite.cpp2
-rw-r--r--src/classdef.cpp2
-rw-r--r--src/commentcnv.l2
-rw-r--r--src/commentscan.l2
-rw-r--r--src/condparser.cpp6
-rw-r--r--src/config.xml2
-rwxr-xr-xsrc/configgen.py2
-rw-r--r--src/context.cpp2
-rw-r--r--src/doxygen.cpp2
-rw-r--r--src/fortrancode.l2
-rw-r--r--src/fortranscanner.l8
-rw-r--r--src/htmlentity.cpp2
-rw-r--r--src/rtfgen.cpp2
-rw-r--r--src/tclscanner.l2
-rw-r--r--src/template.cpp2
-rw-r--r--src/util.cpp2
-rw-r--r--src/vhdlcode.l8
-rw-r--r--src/vhdldocgen.cpp10
-rw-r--r--src/xmlcode.l2
19 files changed, 31 insertions, 31 deletions
diff --git a/src/cite.cpp b/src/cite.cpp
index d934d0a..f86350b 100644
--- a/src/cite.cpp
+++ b/src/cite.cpp
@@ -286,7 +286,7 @@ void CiteDict::generatePage() const
thisDir.remove(citeListFile);
thisDir.remove(doxygenBstFile);
thisDir.remove(bib2xhtmlFile);
- // we might try to remove too many files as empty files didn't get a coresponding new file
+ // we might try to remove too many files as empty files didn't get a corresponding new file
// but the remove function does not emit an error for it and we don't catch the error return
// so no problem.
for (unsigned int j = 1; j <= citeDataList.count(); j++)
diff --git a/src/classdef.cpp b/src/classdef.cpp
index 07e723b..e1a80ce 100644
--- a/src/classdef.cpp
+++ b/src/classdef.cpp
@@ -158,7 +158,7 @@ class ClassDefImpl
/* user defined member groups */
MemberGroupSDict *memberGroupSDict;
- /*! Is this an abstact class? */
+ /*! Is this an abstract class? */
bool isAbstract;
/*! Is the class part of an unnamed namespace? */
diff --git a/src/commentcnv.l b/src/commentcnv.l
index ebee914..44e2543 100644
--- a/src/commentcnv.l
+++ b/src/commentcnv.l
@@ -667,7 +667,7 @@ void replaceComment(int offset);
}
}
}
- /* Python an VHDL share CComment, so special attention for ending commments is required */
+ /* Python an VHDL share CComment, so special attention for ending comments is required */
<CComment>"\n"/[ \t]*"#" {
if (g_lang!=SrcLangExt_VHDL)
{
diff --git a/src/commentscan.l b/src/commentscan.l
index f26cabd..588d40a 100644
--- a/src/commentscan.l
+++ b/src/commentscan.l
@@ -1593,7 +1593,7 @@ RCSTAG "$"{ID}":"[^\n$]+"$"
/* --------- handle arguments of the file/dir/example command ------------ */
-<FileDocArg1>{DOCNL} { // no file name specfied
+<FileDocArg1>{DOCNL} { // no file name specified
if (*yytext=='\n') yyLineNr++;
addOutput('\n');
BEGIN( Comment );
diff --git a/src/condparser.cpp b/src/condparser.cpp
index 69f8d29..6c5d787 100644
--- a/src/condparser.cpp
+++ b/src/condparser.cpp
@@ -51,7 +51,7 @@ bool CondParser::parse(const char *fileName,int lineNr,const char *expr)
#if 0
// check for garbage at the end of the expression
- // an expression ends with a character '\0' and token_type = delimeter
+ // an expression ends with a character '\0' and token_type = delimiter
if (m_tokenType!=DELIMITER || !m_token.isEmpty())
{
if (m_tokenType == DELIMITER)
@@ -84,7 +84,7 @@ bool CondParser::parse(const char *fileName,int lineNr,const char *expr)
/**
- * checks if the given char c is a delimeter
+ * checks if the given char c is a delimiter
* minus is checked apart, can be unary minus
*/
static bool isDelimiter(const char c)
@@ -155,7 +155,7 @@ void CondParser::getToken()
return;
}
- // check for operators (delimeters)
+ // check for operators (delimiters)
if (isDelimiter(*m_e))
{
m_tokenType = DELIMITER;
diff --git a/src/config.xml b/src/config.xml
index 4d9a048..7bc1fe8 100644
--- a/src/config.xml
+++ b/src/config.xml
@@ -1644,7 +1644,7 @@ to disable this feature.
path to the <a href="http://clang.llvm.org/docs/HowToSetupToolingForLLVM.html">
compilation database</a> used when the files were built. This is equivalent to
specifying the "-p" option to a clang tool, such as clang-check. These options
- will then be pased to the parser.
+ will then be passed to the parser.
@note The availability of this option depends on whether or not doxygen
was generated with the `-Duse-libclang=ON` option for CMake.
diff --git a/src/configgen.py b/src/configgen.py
index 3b86954..33857b7 100755
--- a/src/configgen.py
+++ b/src/configgen.py
@@ -63,7 +63,7 @@ def transformDocs(doc):
doc = re.sub('<a +href="([^"]*)" *>([^<]*)</a>', '\\2 (see: \\1)', doc)
# LaTeX name as formula -> LaTeX
doc = doc.replace("\\f$\\mbox{\\LaTeX}\\f$", "LaTeX")
- # Other forula's (now just 2) so explicitely mentioned.
+ # Other formula's (now just 2) so explicitly mentioned.
doc = doc.replace("\\f$2^{(16+\\mbox{LOOKUP\\_CACHE\\_SIZE})}\\f$",
"2^(16+LOOKUP_CACHE_SIZE)")
doc = doc.replace("\\f$2^{16} = 65536\\f$", "2^16=65536")
diff --git a/src/context.cpp b/src/context.cpp
index de31202..896c4e0 100644
--- a/src/context.cpp
+++ b/src/context.cpp
@@ -1400,7 +1400,7 @@ class DefinitionContext
inst.addProperty("isLinkable",&DefinitionContext::isLinkable);
//%% bool isLinkableInProject: can the symbol be linked within this project?
inst.addProperty("isLinkableInProject",&DefinitionContext::isLinkableInProject);
- //%% int dynSectionId: identifier that can be used for collapsable sections
+ //%% int dynSectionId: identifier that can be used for collapsible sections
inst.addProperty("dynSectionId",&DefinitionContext::dynSectionId);
//%% string language: the programming language in which the symbol is written
inst.addProperty("language",&DefinitionContext::language);
diff --git a/src/doxygen.cpp b/src/doxygen.cpp
index ec97d43..cf9159c 100644
--- a/src/doxygen.cpp
+++ b/src/doxygen.cpp
@@ -8403,7 +8403,7 @@ static void flushUnresolvedRelations()
// This is needed before resolving the inheritance relations, since
// it would otherwise not find the inheritance relation
// for C in the example below, as B::I was already found to be unresolvable
- // (which is correct if you igore the inheritance relation between A and B).
+ // (which is correct if you ignore the inheritance relation between A and B).
//
// class A { class I {} };
// class B : public A {};
diff --git a/src/fortrancode.l b/src/fortrancode.l
index 141e762..501b492 100644
--- a/src/fortrancode.l
+++ b/src/fortrancode.l
@@ -1,6 +1,6 @@
/******************************************************************************
*
- * Parser for syntax hightlighting and references for Fortran90 F subset
+ * Parser for syntax highlighting and references for Fortran90 F subset
*
* Copyright (C) by Anke Visser
* based on the work of Dimitri van Heesch.
diff --git a/src/fortranscanner.l b/src/fortranscanner.l
index 23c0970..85b6de9 100644
--- a/src/fortranscanner.l
+++ b/src/fortranscanner.l
@@ -102,8 +102,8 @@ struct SymbolModifiers {
bool nopass;
bool pass;
bool contiguous;
- bool volat; /* volatile is a reserverd name */
- bool value; /* volatile is a reserverd name */
+ bool volat; /* volatile is a reserved name */
+ bool value; /* volatile is a reserved name */
QCString passVar;
SymbolModifiers() : type(), returnName(), protection(NONE_P), direction(NONE_D),
@@ -1720,7 +1720,7 @@ SymbolModifiers& SymbolModifiers::operator|=(const SymbolModifiers &mdfs)
return *this;
}
-/*! Extracts and adds passed modifier to these modifiers.*/
+/*! Extracts and adds passed modifier to these modifiers.*/
SymbolModifiers& SymbolModifiers::operator|=(QCString mdfString)
{
mdfString = mdfString.lower();
@@ -2375,7 +2375,7 @@ static void subrHandleCommentBlock(const QCString &doc,bool brief)
// strip direction
loc_doc = loc_doc.right(loc_doc.length()-strlen(directionParam[SymbolModifiers::IN]));
loc_doc.stripWhiteSpace();
- // in case of emty documentation or (now) just name, consider it as no documemntation
+ // in case of empty documentation or (now) just name, consider it as no documemntation
if (loc_doc.isEmpty() || (loc_doc.lower() == argName.lower()))
{
// reset current back to the part inside the routine
diff --git a/src/htmlentity.cpp b/src/htmlentity.cpp
index 668c224..3d95705 100644
--- a/src/htmlentity.cpp
+++ b/src/htmlentity.cpp
@@ -22,7 +22,7 @@ static const int g_numberHtmlMappedCmds = 11;
//! @brief Structure defining all HTML4 entities, doxygen extensions and doxygen commands representing special symbols.
//! @details In case an entity does not exist a NULL is given for the entity. The first column contains the symbolic code
-//! for the entity, see also doxparser.h The second column contains the name of the enitity (without the starting \& and
+//! for the entity, see also doxparser.h The second column contains the name of the entity (without the starting \& and
//! ending ;)
static struct htmlEntityInfo
{
diff --git a/src/rtfgen.cpp b/src/rtfgen.cpp
index 5e8dbd5..7fcfbb3 100644
--- a/src/rtfgen.cpp
+++ b/src/rtfgen.cpp
@@ -2448,7 +2448,7 @@ static bool preProcessFile(QDir &d,QCString &infName, FTextStream &t, bool bIncl
}
else // no INCLUDETEXT on this line
{
- // elaborate hoopla to skip the final "}" if we didn't include the
+ // elaborate hoopla to skip the final "}" if we didn't include the
// headers
if (!f.atEnd() || bIncludeHeader)
{
diff --git a/src/tclscanner.l b/src/tclscanner.l
index e50d9c1..791ecc4 100644
--- a/src/tclscanner.l
+++ b/src/tclscanner.l
@@ -426,7 +426,7 @@ static struct
QCString file_name; // name of used file
ParserInterface *this_parser; // myself
int command; // true if command was found
- int comment; // set true if comment was scaned
+ int comment; // set true if comment was scanned
int brace_level; // bookkeeping of braces
int bracket_level; // bookkeeping of brackets
int bracket_quote; // bookkeeping of quotes (toggles)
diff --git a/src/template.cpp b/src/template.cpp
index 10b3e43..3e39d3c 100644
--- a/src/template.cpp
+++ b/src/template.cpp
@@ -5113,7 +5113,7 @@ class TemplateEngine::Private
}
else
{
- err("Cound not open template file %s\n",fileName.data());
+ err("Could not open template file %s\n",fileName.data());
}
}
return templ;
diff --git a/src/util.cpp b/src/util.cpp
index 8e4c5a7..438efc9 100644
--- a/src/util.cpp
+++ b/src/util.cpp
@@ -4751,7 +4751,7 @@ bool resolveRef(/* in */ const char *scName,
{
return resolveRef(scName,name,inSeeBlock,resContext,resMember,FALSE,0,checkScope);
}
- if (bracePos!=-1) // Try without parameters as well, could be a contructor invocation
+ if (bracePos!=-1) // Try without parameters as well, could be a constructor invocation
{
*resContext=getClass(fullName.left(bracePos));
if (*resContext)
diff --git a/src/vhdlcode.l b/src/vhdlcode.l
index 3e027d7..ce1f92b 100644
--- a/src/vhdlcode.l
+++ b/src/vhdlcode.l
@@ -13,7 +13,7 @@
*
*/
/******************************************************************************
- * Parser for syntax hightlighting and references for vhdl subset
+ * Parser for syntax highlighting and references for vhdl subset
* written by M. Kreis
* supports VHDL-87/93/2008
******************************************************************************/
@@ -672,7 +672,7 @@ static void codifyMapLines(const char *text)
}//codifymaplines
/*
-* writes a function|procedure prototype and links the function|procedure name
+* writes a function|procedure prototype and links the function|procedure name
*/
static void writeFuncProto()
@@ -710,7 +710,7 @@ static void writeFuncProto()
}
}// writeFuncProto
-/* writes a process prototype to the ouput */
+/* writes a process prototype to the output */
static void writeProcessProto(){
codifyLines(g_FuncProto.data(),g_CurrClass.data());
@@ -1340,7 +1340,7 @@ XILINX "INST"|"NET"|"PIN"|"BLKNM"|"BUFG"|"COLLAPSE"|"CPLD"|"COMPGRP"|"CONFI
writeFont("vhdlkeyword",vhdlcodeYYtext);
}
-<Bases>^{B}*("use"|"library"){BN}+ { //found package or library
+<Bases>^{B}*("use"|"library"){BN}+ { //found package or library
writeFont("vhdlkeyword",vhdlcodeYYtext);
BEGIN(ParsePackage);
}
diff --git a/src/vhdldocgen.cpp b/src/vhdldocgen.cpp
index 7883327..dcf7f42 100644
--- a/src/vhdldocgen.cpp
+++ b/src/vhdldocgen.cpp
@@ -174,7 +174,7 @@ static void createSVG()
}
}
-// Creates a svg image. All in/out/inout ports are shown with brief description and direction.
+// Creates an svg image. All in/out/inout ports are shown with brief description and direction.
// Brief descriptions for entities are shown too.
void VhdlDocGen::writeOverview()
{
@@ -585,7 +585,7 @@ const char* g_vhdlKeyWordMap0[] =
"map","mod",
"nand","new","next","nor","not","null",
"of","on","open","or","others","out",
- "package","parameter","port","postponed","procedure","process","property","proctected","pure",
+ "package","parameter","port","postponed","procedure","process","property","protected","pure",
"range","record","register","reject","release","restrict","restrict_guarantee","rem","report","rol","ror","return",
"select","sequence","severity","signal","shared","sla","sll","sra","srl","strong","subtype",
"then","to","transport","type",
@@ -2530,7 +2530,7 @@ QCString VhdlDocGen::trDesignUnitMembers()
QCString VhdlDocGen::trDesignUnitListDescription()
{
return "Here is a list of all design unit members with links to "
- "the Entities they belong to:";
+ "the Entities they belong to:";
}
QCString VhdlDocGen::trDesignUnitIndex()
@@ -3039,7 +3039,7 @@ void assignBinding(VhdlConfNode * conf)
/*
// file foo.vhd
-// enitity foo
+// entity foo
// .....
// end entity
@@ -3993,7 +3993,7 @@ void FlowChart::createSVG()
//const MemberDef *m=VhdlDocGen::getFlowMember();
//if (m)
- // fprintf(stderr,"\n creating flowchart : %s %s in file %s \n",VhdlDocGen::trTypeString(m->getMemberSpecifiers()),m->name().data(),m->getFileDef()->name().data());
+ // fprintf(stderr,"\n creating flowchart : %s %s in file %s \n",VhdlDocGen::trTypeString(m->getMemberSpecifiers()),m->name().data(),m->getFileDef()->name().data());
QCString dir=" -o \""+ov+qcs+"\"";
ov+="/flow_design.dot";
diff --git a/src/xmlcode.l b/src/xmlcode.l
index c090531..d2f94ad 100644
--- a/src/xmlcode.l
+++ b/src/xmlcode.l
@@ -13,7 +13,7 @@
*
*/
/******************************************************************************
- * Parser for syntax hightlighting and references for XML
+ * Parser for syntax highlighting and references for XML
* written by Weston Thayer
******************************************************************************/