2005-04-21 Bryce McKinlay <mckinlay@redhat.com>
authorbryce <bryce@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 21 Apr 2005 15:49:38 +0000 (15:49 +0000)
committerbryce <bryce@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 21 Apr 2005 15:49:38 +0000 (15:49 +0000)
        * gcj.texi (Object fields): Change "Integer" to "Int" in example
        contructor.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@98510 138bc75d-0d04-0410-961f-82ee72b054a4

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

index e7a814a..f5d39eb 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 1af6690..d73abb4 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