aboutsummaryrefslogtreecommitdiff
path: root/gcc/java/parse.y
diff options
context:
space:
mode:
authorAlexandre Petit-Bianco <apbianco@cygnus.com>2000-07-22 04:36:13 +0000
committerAlexandre Petit-Bianco <apbianco@gcc.gnu.org>2000-07-21 21:36:13 -0700
commitf4530f43e7dd7b2eed91497b3ea6c29c58ac6e37 (patch)
treeb371a34ba4d0389c4450bb0a5cca44ee5df6dd40 /gcc/java/parse.y
parented7d4ce863e8c76041f4664b49ed048ddb7af8bb (diff)
downloadgcc-f4530f43e7dd7b2eed91497b3ea6c29c58ac6e37.zip
gcc-f4530f43e7dd7b2eed91497b3ea6c29c58ac6e37.tar.gz
gcc-f4530f43e7dd7b2eed91497b3ea6c29c58ac6e37.tar.bz2
parse.y (simple_name:): Fixed typo in error message.
2000-07-21 Alexandre Petit-Bianco <apbianco@cygnus.com> * parse.y (simple_name:): Fixed typo in error message. (http://gcc.gnu.org/ml/gcc-patches/2000-07/msg00881.html) From-SVN: r35186
Diffstat (limited to 'gcc/java/parse.y')
-rw-r--r--gcc/java/parse.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/java/parse.y b/gcc/java/parse.y
index bd3c5a2..0aded25 100644
--- a/gcc/java/parse.y
+++ b/gcc/java/parse.y
@@ -644,7 +644,7 @@ simple_name:
identifier /* Default rule */
{
if (strchr (IDENTIFIER_POINTER (EXPR_WFL_NODE ($$)), '$'))
- parse_error_context ($$, "Invalide name `%s'",
+ parse_error_context ($$, "Invalid type name `%s'",
IDENTIFIER_POINTER (EXPR_WFL_NODE ($$)));
}
;