2005-04-21 Bryce McKinlay <mckinlay@redhat.com>
* gcj.texi (Object fields): Change "Integer" to "Int" in example
contructor.
From-SVN: r98510
+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.
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