[PATCH] Java: fix to an error message typo.

Alexandre Petit-Bianco apbianco@cygnus.com
Fri Jul 21 21:33:00 GMT 2000


Subject says it all. I'm checking this in.

./A

2000-07-21  Alexandre Petit-Bianco  <apbianco@cygnus.com>

        * parse.y (simple_name:): Fixed typo in error message.

Index: parse.y
===================================================================
diff -u -p parse.y
--- old-parse.y	Fri Jul 21 17:50:16 2000
+++ parse.y	Fri Jul 21 21:27:17 2000
@@ -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 name `%s'",
 				 IDENTIFIER_POINTER (EXPR_WFL_NODE ($$)));
 	}
 ;



More information about the Gcc-patches mailing list