diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-09-25 13:49:22 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-09-25 13:49:22 +0000 |
commit | 4dd4c7512e1d49328716810ce245772827f97fb2 (patch) | |
tree | 0e360aff4616fc788dff646b581c058a5519087f /gcc/java/parse.y | |
parent | f3cd574f6b2a45b1cd9153636d0ad1aba1cde806 (diff) | |
download | gcc-4dd4c7512e1d49328716810ce245772827f97fb2.zip gcc-4dd4c7512e1d49328716810ce245772827f97fb2.tar.gz gcc-4dd4c7512e1d49328716810ce245772827f97fb2.tar.bz2 |
expr.c, [...]: Fix comment typos.
* expr.c, jcf-dump.c, parse-scan.y, parse.y: Fix
comment typos.
* gcj.texi: Fix typos.
From-SVN: r88099
Diffstat (limited to 'gcc/java/parse.y')
-rw-r--r-- | gcc/java/parse.y | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/java/parse.y b/gcc/java/parse.y index 0a72599..8ac79ea 100644 --- a/gcc/java/parse.y +++ b/gcc/java/parse.y @@ -1961,7 +1961,7 @@ primary_no_new_array: | array_access | type_literals /* Added, JDK1.1 inner classes. Documentation is wrong - refering to a 'ClassName' (class_name) rule that doesn't + referring to a 'ClassName' (class_name) rule that doesn't exist. Used name: instead. */ | name DOT_TK THIS_TK { @@ -2068,7 +2068,7 @@ anonymous_class_creation: later on in verify_constructor_super. It's during the expansion of a `new' statement - refering to an anonymous class that a ctor will + referring to an anonymous class that a ctor will be generated for the anonymous class, with the right arguments. */ @@ -15364,7 +15364,7 @@ patch_try_statement (tree node) /* Check catch clauses, if any. Every time we find an error, we try to process the next catch clause. We process the catch clause before the try block so that when processing the try block we can check thrown - exceptions againts the caught type list. */ + exceptions against the caught type list. */ for (current = catch; current; current = TREE_CHAIN (current)) { tree carg_decl, carg_type; |