AssertionError.java: Typo fix.
authorTom Tromey <tromey@redhat.com>
Thu, 21 Apr 2005 20:41:32 +0000 (20:41 +0000)
committerMichael Koch <mkoch@gcc.gnu.org>
Thu, 21 Apr 2005 20:41:32 +0000 (20:41 +0000)
2005-04-21  Tom Tromey  <tromey@redhat.com>

* java/lang/AssertionError.java: Typo fix.

From-SVN: r98523

libjava/ChangeLog
libjava/java/lang/AssertionError.java

index 3acb212..311eba7 100644 (file)
@@ -1,5 +1,9 @@
 2005-04-21  Tom Tromey  <tromey@redhat.com>
 
+       * java/lang/AssertionError.java: Typo fix.
+
+2005-04-21  Tom Tromey  <tromey@redhat.com>
+
        * java/lang/VMClassLoader.java (transformException): Removed.
        (resolveClass): No longer native.  Now does nothing.
        * java/lang/natVMClassLoader.cc (resolveClass): Removed.
index 8851be1..499cb34 100644 (file)
@@ -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.
  *