summaryrefslogtreecommitdiffstats
path: root/src/commentcnv.l
diff options
context:
space:
mode:
authorluz.paz <luzpaz@users.noreply.github.com>2018-04-25 17:32:21 (GMT)
committerluz.paz <luzpaz@users.noreply.github.com>2018-04-25 17:32:36 (GMT)
commit99a836218ca4e20862d3f816361c4586b45560ee (patch)
treedf0c1f0669598561f12d07da31a104de1ccf59af /src/commentcnv.l
parente75de3722b98115f27483aeacb3b2b1dbe7114a3 (diff)
downloadDoxygen-99a836218ca4e20862d3f816361c4586b45560ee.zip
Doxygen-99a836218ca4e20862d3f816361c4586b45560ee.tar.gz
Doxygen-99a836218ca4e20862d3f816361c4586b45560ee.tar.bz2
Misc. typos
Found via `codespell`
Diffstat (limited to 'src/commentcnv.l')
-rw-r--r--src/commentcnv.l4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commentcnv.l b/src/commentcnv.l
index aca7300..89d2fea 100644
--- a/src/commentcnv.l
+++ b/src/commentcnv.l
@@ -294,12 +294,12 @@ void replaceComment(int offset);
}
else
{
- /* check for fixed format; we might have some conditional as part of multilene if like C<5 .and. & */
+ /* check for fixed format; we might have some conditional as part of multiline if like C<5 .and. & */
if (isFixedForm && (g_col == 0))
{
copyToOutput(yytext,(int)yyleng);
g_nestingCount=0;
- g_commentStack.clear(); /* to be on the save side */
+ g_commentStack.clear(); /* to be on the safe side */
BEGIN(CComment);
g_commentStack.push(new CommentCtx(g_lineNr));
}