summaryrefslogtreecommitdiffstats
path: root/src/fortranscanner.l
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2019-11-05 12:56:27 (GMT)
committeralbert-github <albert.tests@gmail.com>2019-11-05 12:56:27 (GMT)
commite6c910b1480e4cdba1a8054d2c0d1442c483cd9b (patch)
tree4451daaf935198fd3338d9d66d3979d759862c10 /src/fortranscanner.l
parentcc4675afcc5f6825b9302fd0915c0c4148f555ab (diff)
downloadDoxygen-e6c910b1480e4cdba1a8054d2c0d1442c483cd9b.zip
Doxygen-e6c910b1480e4cdba1a8054d2c0d1442c483cd9b.tar.gz
Doxygen-e6c910b1480e4cdba1a8054d2c0d1442c483cd9b.tar.bz2
Spelling corrections for src directory
Spelling corrections as found by codespell and in #561. Some reported problems were already fixed, others are fixed here, with some exceptions (a,o.): - "referenceby" in defgen.cpp as this is in the output and I cannot oversee the consequences (looks like none, but ...) - "HANGEUL_CHARSET" left as is as in some MS documentation is written: 'HANGUL_CHARSET: Also spelled "Hangeul". Specifies the Hangul Korean character set.' (https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-wmf/0d0b32ac-a836-4bd2-a112-b6000a1b4fc9).
Diffstat (limited to 'src/fortranscanner.l')
-rw-r--r--src/fortranscanner.l6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fortranscanner.l b/src/fortranscanner.l
index 161deae..a053910 100644
--- a/src/fortranscanner.l
+++ b/src/fortranscanner.l
@@ -141,7 +141,7 @@ static const char * inputString;
static int inputPosition;
static bool isFixedForm;
static QCString inputStringPrepass; ///< Input string for prepass of line cont. '&'
-static QCString inputStringSemi; ///< Input string after command separetor ';'
+static QCString inputStringSemi; ///< Input string after command separator ';'
static unsigned int inputPositionPrepass;
static int lineCountPrepass = 0;
@@ -1841,7 +1841,7 @@ static QCString extractFromParens(const QCString name)
return extracted;
}
-/*! remove unuseful spaces from bind statement */
+/*! remove useless spaces from bind statement */
static QCString extractBind(const QCString name)
{
QCString parensPart = extractFromParens(name);
@@ -2540,7 +2540,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 empty documentation or (now) just name, consider it as no documemntation
+ // in case of empty documentation or (now) just name, consider it as no documentation
if (!loc_doc.isEmpty() && (loc_doc.lower() != argName.lower()))
{
handleCommentBlock(QCString("\n\n@param ") + directionParam[SymbolModifiers::IN] + " " +