summaryrefslogtreecommitdiff
path: root/gcc/java
diff options
context:
space:
mode:
authorbryce <bryce@138bc75d-0d04-0410-961f-82ee72b054a4>2005-04-21 15:49:38 +0000
committerbryce <bryce@138bc75d-0d04-0410-961f-82ee72b054a4>2005-04-21 15:49:38 +0000
commit9d2f9716004db282e92729a124b98f666ef559b5 (patch)
tree0f6c09b0dbf0824b3e91a482834eb0d7546908b2 /gcc/java
parenta53ff4c19b10f7e985c30814a913a11de1e553e6 (diff)
downloadgcc-9d2f9716004db282e92729a124b98f666ef559b5.tar.gz
2005-04-21 Bryce McKinlay <mckinlay@redhat.com>
* 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
Diffstat (limited to 'gcc/java')
-rw-r--r--gcc/java/ChangeLog5
-rw-r--r--gcc/java/gcj.texi2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog
index e7a814af80f..f5d39ebe046 100644
--- a/gcc/java/ChangeLog
+++ b/gcc/java/ChangeLog
@@ -1,3 +1,8 @@
+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>
* gcj.texi: Fix typos and bogus example.
diff --git a/gcc/java/gcj.texi b/gcc/java/gcj.texi
index 1af66900bce..d73abb4ed9a 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