gcj.texi: Fix typos and bogus example.
authorBryce McKinlay <mckinlay@redhat.com>
Thu, 21 Apr 2005 00:22:54 +0000 (00:22 +0000)
committerBryce McKinlay <bryce@gcc.gnu.org>
Thu, 21 Apr 2005 00:22:54 +0000 (01:22 +0100)
2005-04-20  Bryce McKinlay  <mckinlay@redhat.com>

   * gcj.texi: Fix typos and bogus example.

From-SVN: r98478

gcc/java/ChangeLog
gcc/java/gcj.texi

index a8ac54723d600c35eb95403b0c2d629514cbb86e..e7a814af80fd5c84093476d6f0aa5b7062ae5bb1 100644 (file)
@@ -1,3 +1,7 @@
+2005-04-20  Bryce McKinlay  <mckinlay@redhat.com>
+
+       * gcj.texi: Fix typos and bogus example.
+
 2005-04-19  Kazu Hirata  <kazu@cs.umass.edu>
 
        * except.c: Fix a comment typo.
index c2e674e58c593bc284e42ef48f54be5757cf85f3..1af66900bce451b3ce65d9dae92e8b7523fe30f1 100644 (file)
@@ -1546,7 +1546,7 @@ management, but this is invisible to the application, and the
 reference to the object points to the dispatch table pointer.)
 
 The fields are laid out in the same order, alignment, and size as in
-C++.  Specifically, 8-bite and 16-bit native types (@code{byte},
+C++.  Specifically, 8-bit and 16-bit native types (@code{byte},
 @code{short}, @code{char}, and @code{boolean}) are @emph{not} widened
 to 32 bits.  Note that the Java VM does extend 8-bit and 16-bit types
 to 32 bits when on the VM stack or temporary registers.
@@ -1560,7 +1560,7 @@ public class Int
 @{
   public int i;
   public Integer (int i) @{ this.i = i; @}
-  public static zero = new Integer(0);
+  public static Int zero = new Int(0);
 @}
 @end example
 
@@ -1630,7 +1630,7 @@ it is safe to leave it out).
 
 Accessing a static field also requires the class of the
 field to be initialized.  The Java compiler will generate code
-to call @code{Jv_InitClass} before getting or setting the field.
+to call @code{JvInitClass} before getting or setting the field.
 However, the C++ compiler will not generate this extra code,
 so it is your responsibility to make sure the class is
 initialized before you access a static field from C++.