Commit 55f96367 by Bryce McKinlay Committed by Bryce McKinlay

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

2005-04-21  Bryce McKinlay  <mckinlay@redhat.com>

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

From-SVN: r98510
parent 41806d92
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> 2005-04-20 Bryce McKinlay <mckinlay@redhat.com>
* gcj.texi: Fix typos and bogus example. * gcj.texi: Fix typos and bogus example.
......
...@@ -1559,7 +1559,7 @@ way. For example, given the following Java class: ...@@ -1559,7 +1559,7 @@ way. For example, given the following Java class:
public class Int public class Int
@{ @{
public int i; public int i;
public Integer (int i) @{ this.i = i; @} public Int (int i) @{ this.i = i; @}
public static Int zero = new Int(0); public static Int zero = new Int(0);
@} @}
@end example @end example
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment