diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-09-16 16:00:45 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-09-16 16:00:45 +0000 |
commit | 1f2959f06e9093dfc6e717e0839988046883b8bb (patch) | |
tree | d4390e21373fcfa884178f5708c587e4da66100a /gcc/fortran/array.c | |
parent | d1f05f931e1689f7a0811acc39379831d40dcea9 (diff) | |
download | gcc-1f2959f06e9093dfc6e717e0839988046883b8bb.zip gcc-1f2959f06e9093dfc6e717e0839988046883b8bb.tar.gz gcc-1f2959f06e9093dfc6e717e0839988046883b8bb.tar.bz2 |
array.c, [...]: Fix comment typos.
* array.c, data.c, decl.c, dependency.c, error.c, f95-lang.c,
interface.c, intrinsic.c, io.c, misc.c, module.c, parse.h,
resolve.c, scanner.c, trans-array.c, trans-array.h,
trans-common.c, trans-const.h, trans-decl.c, trans-expr.c,
trans-intrinsic.c, trans-stmt.c, trans-types.c, trans.c,
trans.h: Fix comment typos. Follow spelling conventions.
From-SVN: r87605
Diffstat (limited to 'gcc/fortran/array.c')
-rw-r--r-- | gcc/fortran/array.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/fortran/array.c b/gcc/fortran/array.c index 37747a6..ac1ea6f 100644 --- a/gcc/fortran/array.c +++ b/gcc/fortran/array.c @@ -941,7 +941,7 @@ check_element_type (gfc_expr * expr) { if (cons_state == CONS_BAD) - return 0; /* Supress further errors */ + return 0; /* Suppress further errors */ if (cons_state == CONS_START) { @@ -1607,7 +1607,7 @@ gfc_get_array_element (gfc_expr * array, int element) /********* Subroutines for determining the size of an array *********/ -/* These are needed just to accomodate RESHAPE(). There are no +/* These are needed just to accommodate RESHAPE(). There are no diagnostics here, we just return a negative number if something goes wrong. */ |