This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: PATCH: Re: Fwd: Typo in online GCJ docs.


Thomas Zander wrote:

Hi Bryce,

thanks for picking this up so quickly!
Just one thing; you missed one fix in the example I made; the constructor is still called 'Integer' while it should be 'Int'.



Thanks. Fixing as follows.


Bryce

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

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

--- gcj.texi    21 Apr 2005 00:22:54 -0000      1.81
+++ gcj.texi    21 Apr 2005 15:48:22 -0000
@@ -1559,7 +1559,7 @@
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




Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]