gcj.texi (Object fields): Change "Integer" to "Int" in example contructor.
authorBryce McKinlay <mckinlay@redhat.com>
Thu, 21 Apr 2005 15:49:38 +0000 (15:49 +0000)
committerBryce McKinlay <bryce@gcc.gnu.org>
Thu, 21 Apr 2005 15:49:38 +0000 (16:49 +0100)
2005-04-21  Bryce McKinlay  <mckinlay@redhat.com>

        * gcj.texi (Object fields): Change "Integer" to "Int" in example
        contructor.

From-SVN: r98510

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

index e7a814af80fd5c84093476d6f0aa5b7062ae5bb1..f5d39ebe046072ed68b09861f4116fa974127ddc 100644 (file)
@@ -1,3 +1,8 @@
+2005-04-21  Bryce McKinlay  <mckinlay@redhat.com>
+
+       * gcj.texi (Object fields): Change "Integer" to "Int" in example
+       contructor.
+
 2005-04-20  Bryce McKinlay  <mckinlay@redhat.com>
 
        * gcj.texi: Fix typos and bogus example.
index 1af66900bce451b3ce65d9dae92e8b7523fe30f1..d73abb4ed9a68811f4084baef327dc315ef6d08e 100644 (file)
@@ -1559,7 +1559,7 @@ way.  For example, given the following Java class:
 public class Int
 @{
   public int i;
-  public Integer (int i) @{ this.i = i; @}
+  public Int (int i) @{ this.i = i; @}
   public static Int zero = new Int(0);
 @}
 @end example