diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2005-09-06 02:25:00 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2005-09-06 02:25:00 +0000 |
commit | cd64dc985a81b4eb80a238f633df9f8e9c40ed90 (patch) | |
tree | 6986aaabf8b78d0d7811ad4cd7a7312cdc1d9a13 /gcc/java/java-tree.h | |
parent | 1634705dd6bf842b1dca21c690a38b3fdbef53a4 (diff) | |
download | gcc-cd64dc985a81b4eb80a238f633df9f8e9c40ed90.zip gcc-cd64dc985a81b4eb80a238f633df9f8e9c40ed90.tar.gz gcc-cd64dc985a81b4eb80a238f633df9f8e9c40ed90.tar.bz2 |
check-init.c, [...]: Fix comment typos.
* check-init.c, decl.c, expr.c, gcj.texi, java-tree.h,
jcf-parse.c, jcf.h, parse.h, parse.y, typeck.c: Fix comment
typos. Follow spelling conventions.
From-SVN: r103927
Diffstat (limited to 'gcc/java/java-tree.h')
-rw-r--r-- | gcc/java/java-tree.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/java/java-tree.h b/gcc/java/java-tree.h index d7aa8d7..8f30878 100644 --- a/gcc/java/java-tree.h +++ b/gcc/java/java-tree.h @@ -1660,12 +1660,12 @@ extern tree *type_map; #define INNER_CLASS_DECL_P(NODE) (TYPE_NAME (TREE_TYPE (NODE)) == NODE \ && DECL_CONTEXT (NODE)) -/* True if NODE is an top level class TYPE_DECL node: NODE isn't +/* True if NODE is a top level class TYPE_DECL node: NODE isn't an inner class or NODE is a static class. */ #define TOPLEVEL_CLASS_DECL_P(NODE) (!INNER_CLASS_DECL_P (NODE) \ || CLASS_STATIC (NODE)) -/* True if the class decl NODE was declared in a inner scope and is +/* True if the class decl NODE was declared in an inner scope and is not a toplevel class */ #define PURE_INNER_CLASS_DECL_P(NODE) \ (INNER_CLASS_DECL_P (NODE) && !CLASS_STATIC (NODE)) @@ -1678,7 +1678,7 @@ extern tree *type_map; #define TOPLEVEL_CLASS_TYPE_P(NODE) (!INNER_CLASS_TYPE_P (NODE) \ || CLASS_STATIC (TYPE_NAME (NODE))) -/* True if the class type NODE was declared in a inner scope and is +/* True if the class type NODE was declared in an inner scope and is not a toplevel class */ #define PURE_INNER_CLASS_TYPE_P(NODE) \ (INNER_CLASS_TYPE_P (NODE) && !CLASS_STATIC (TYPE_NAME (NODE))) |