From: bryce Date: Thu, 21 Apr 2005 15:49:38 +0000 (+0000) Subject: 2005-04-21 Bryce McKinlay X-Git-Tag: upstream/4.9.2~61873 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9d2f9716004db282e92729a124b98f666ef559b5;p=platform%2Fupstream%2Flinaro-gcc.git 2005-04-21 Bryce McKinlay * 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 --- diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog index e7a814a..f5d39eb 100644 --- a/gcc/java/ChangeLog +++ b/gcc/java/ChangeLog @@ -1,3 +1,8 @@ +2005-04-21 Bryce McKinlay + + * gcj.texi (Object fields): Change "Integer" to "Int" in example + contructor. + 2005-04-20 Bryce McKinlay * gcj.texi: Fix typos and bogus example. diff --git a/gcc/java/gcj.texi b/gcc/java/gcj.texi index 1af6690..d73abb4 100644 --- a/gcc/java/gcj.texi +++ b/gcc/java/gcj.texi @@ -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