Skip to content

Commit

Permalink
Correction of typing error
Browse files Browse the repository at this point in the history
Corrected documenation -> documentation
  • Loading branch information
albert-github committed Aug 16, 2014
1 parent 6385a83 commit 81c99d1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/fortranscanner.l
Original file line number Diff line number Diff line change
Expand Up @@ -2187,7 +2187,7 @@ static void subrHandleCommentBlock(const QCString &doc,bool brief)
}
else
{
warn(yyFileName,yyLineNr, "inconsistency between intent attribute and documenation for variable: "+argName);
warn(yyFileName,yyLineNr, "inconsistency between intent attribute and documentation for variable: "+argName);
handleCommentBlock(QCString("\n\n@param ") + directionParam[dir1] + " " +
argName + " " + doc,brief);
}
Expand All @@ -2202,7 +2202,7 @@ static void subrHandleCommentBlock(const QCString &doc,bool brief)
}
else
{
warn(yyFileName,yyLineNr, "inconsistency between intent attribute and documenation for variable: "+argName);
warn(yyFileName,yyLineNr, "inconsistency between intent attribute and documentation for variable: "+argName);
handleCommentBlock(QCString("\n\n@param ") + directionParam[dir1] + " " +
argName + " " + doc,brief);
}
Expand All @@ -2217,7 +2217,7 @@ static void subrHandleCommentBlock(const QCString &doc,bool brief)
}
else
{
warn(yyFileName,yyLineNr, "inconsistency between intent attribute and documenation for variable: "+argName);
warn(yyFileName,yyLineNr, "inconsistency between intent attribute and documentation for variable: "+argName);
handleCommentBlock(QCString("\n\n@param ") + directionParam[dir1] + " " +
argName + " " + doc,brief);
}
Expand Down

0 comments on commit 81c99d1

Please sign in to comment.