aboutsummaryrefslogtreecommitdiff
path: root/gcc/java/gcj.texi
diff options
context:
space:
mode:
authorBryce McKinlay <mckinlay@redhat.com>2005-04-21 15:49:38 +0000
committerBryce McKinlay <bryce@gcc.gnu.org>2005-04-21 16:49:38 +0100
commit55f96367561241fe9885766948d372bf850985de (patch)
tree0f6c09b0dbf0824b3e91a482834eb0d7546908b2 /gcc/java/gcj.texi
parent41806d92af91cf26e52aa00a536cf3094ef2648b (diff)
downloadgcc-55f96367561241fe9885766948d372bf850985de.zip
gcc-55f96367561241fe9885766948d372bf850985de.tar.gz
gcc-55f96367561241fe9885766948d372bf850985de.tar.bz2
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
Diffstat (limited to 'gcc/java/gcj.texi')
-rw-r--r--gcc/java/gcj.texi2
1 files changed, 1 insertions, 1 deletions
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