gcj.texi: Fix a typo.
authorKazu Hirata <kazu@cs.umass.edu>
Mon, 4 Apr 2005 15:29:52 +0000 (15:29 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Mon, 4 Apr 2005 15:29:52 +0000 (15:29 +0000)
* gcj.texi: Fix a typo.
* lang.c: Fix a comment typo.

From-SVN: r97551

gcc/java/ChangeLog
gcc/java/gcj.texi
gcc/java/lang.c

index e45415e10aa1027916e6ae1160f69528b6d8a4ca..6d4d4bfa314daacfde50ab648f983727a0b199c0 100644 (file)
@@ -1,3 +1,8 @@
+2005-04-04  Kazu Hirata  <kazu@cs.umass.edu>
+
+       * gcj.texi: Fix a typo.
+       * lang.c: Fix a comment typo.
+
 2005-04-01  Thomas Fitzsimmons  <fitzsim@redhat.com>
 
        * gcj.texi (Invoking gij): Add descriptions of new -X options.
index e71511af7708ae637e768057faf3147d2f5d26f7..523a0b59b0256ec6d85658338cb4b30b3f68ef54 100644 (file)
@@ -1653,7 +1653,7 @@ java::util::Hashtable *ht = new java::util::Hashtable(120);
 @node Memory allocation
 @section Memory allocation
 
-When allocting memory in @acronym{CNI} methods it is best to handle
+When allocating memory in @acronym{CNI} methods it is best to handle
 out-of-memory conditions by throwing a Java exception.  These
 functions are provided for that purpose:
 
index 553e20cf57f3afdfc7f23bbafcea9ab949302ff1..e0d2672b2a5d2f4f9500edda4cedf5a232a1af19 100644 (file)
@@ -801,7 +801,7 @@ merge_init_test_initialization (void **entry, void *x)
   does this by setting the DECL_INITIAL of the init_test_decl for that
   class, and no initializations are emitted for that class.
 
-  However, what if the method that is suppoed to do the initialization
+  However, what if the method that is supposed to do the initialization
   is itself inlined in the caller?  When expanding the called method
   we'll assume that the class initialization has already been done,
   because the DECL_INITIAL of the init_test_decl is set.