This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Re: PATCH: Re: Fwd: Typo in online GCJ docs.
- From: Bryce McKinlay <mckinlay at redhat dot com>
- To: Thomas Zander <zander at kde dot org>
- Cc: java-patches at gcc dot gnu dot org
- Date: Thu, 21 Apr 2005 11:49:11 -0400
- Subject: Re: PATCH: Re: Fwd: Typo in online GCJ docs.
- References: <200504210111.39147.zander@kde.org> <F05E2534-2568-44DD-8C2D-7ACBAB2955FA@apple.com> <4266EEE0.5030308@redhat.com> <200504210926.48681.zander@kde.org>
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