diff options
author | Tom Tromey <tromey@redhat.com> | 2005-04-21 20:41:32 +0000 |
---|---|---|
committer | Michael Koch <mkoch@gcc.gnu.org> | 2005-04-21 20:41:32 +0000 |
commit | 8fd5bcbe958308c326c07c1b4329500af2b650f8 (patch) | |
tree | 22f05a9439cc7a388cf5de9542bcd273bbfeca20 /libjava/java | |
parent | eb7058ce96fa1d3d93c127cb3dfd53e96e961877 (diff) | |
download | gcc-8fd5bcbe958308c326c07c1b4329500af2b650f8.zip gcc-8fd5bcbe958308c326c07c1b4329500af2b650f8.tar.gz gcc-8fd5bcbe958308c326c07c1b4329500af2b650f8.tar.bz2 |
AssertionError.java: Typo fix.
2005-04-21 Tom Tromey <tromey@redhat.com>
* java/lang/AssertionError.java: Typo fix.
From-SVN: r98523
Diffstat (limited to 'libjava/java')
-rw-r--r-- | libjava/java/lang/AssertionError.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libjava/java/lang/AssertionError.java b/libjava/java/lang/AssertionError.java index 8851be1..499cb34 100644 --- a/libjava/java/lang/AssertionError.java +++ b/libjava/java/lang/AssertionError.java @@ -43,7 +43,7 @@ package java.lang; * statement added in JDK 1.4, to indicate that an assertion failed. There * are enough constructors to ensure that * <code>new AssertionError(<em>expression</em>)</code> will work for all - * espressions, regardless of type, as if the error message were given by + * expressions, regardless of type, as if the error message were given by * the string <code>"" + <em>expression</em></code>. This extends Error, * because you usually do not want to inadvertently trap an assertion failure. * |