aboutsummaryrefslogtreecommitdiff
path: root/gcc/fortran/decl.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2005-04-01 04:16:52 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2005-04-01 04:16:52 +0000
commit69de3b838f194173cdb4292ea5866604706ab437 (patch)
tree2bde4649a6f308dd15b4fc096712f2b30ec88d8f /gcc/fortran/decl.c
parent77270e03c31adaa15b999e5c2d6d2147996f1061 (diff)
downloadgcc-69de3b838f194173cdb4292ea5866604706ab437.zip
gcc-69de3b838f194173cdb4292ea5866604706ab437.tar.gz
gcc-69de3b838f194173cdb4292ea5866604706ab437.tar.bz2
decl.c, [...]: Fix comment typos.
* decl.c, f95-lang.c, interface.c, module.c, trans-stmt.c, trans.h: Fix comment typos. From-SVN: r97364
Diffstat (limited to 'gcc/fortran/decl.c')
-rw-r--r--gcc/fortran/decl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/fortran/decl.c b/gcc/fortran/decl.c
index 45978c0..5f6c075 100644
--- a/gcc/fortran/decl.c
+++ b/gcc/fortran/decl.c
@@ -401,7 +401,7 @@ match_old_style_init (const char *name)
/* Match the stuff following a DATA statement. If ERROR_FLAG is set,
we are matching a DATA statement and are therefore issuing an error
if we encounter something unexpected, if not, we're trying to match
- an old-style intialization expression of the form INTEGER I /2/. */
+ an old-style initialization expression of the form INTEGER I /2/. */
match
gfc_match_data (void)
@@ -896,7 +896,7 @@ variable_decl (void)
/* OK, we've successfully matched the declaration. Now put the
symbol in the current namespace, because it might be used in the
- optional intialization expression for this symbol, e.g. this is
+ optional initialization expression for this symbol, e.g. this is
perfectly legal:
integer, parameter :: i = huge(i)