summaryrefslogtreecommitdiffstats
path: root/src/condparser.cpp
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/condparser.cpp
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/condparser.cpp')
-rw-r--r--src/condparser.cpp6
1 files changed, 3 insertions, 3 deletions
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;