aboutsummaryrefslogtreecommitdiff
path: root/libjava/classpath/java/lang/NoClassDefFoundError.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/classpath/java/lang/NoClassDefFoundError.java')
-rw-r--r--libjava/classpath/java/lang/NoClassDefFoundError.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/libjava/classpath/java/lang/NoClassDefFoundError.java b/libjava/classpath/java/lang/NoClassDefFoundError.java
index 7e8e6ca..55d5f26 100644
--- a/libjava/classpath/java/lang/NoClassDefFoundError.java
+++ b/libjava/classpath/java/lang/NoClassDefFoundError.java
@@ -43,7 +43,7 @@ package java.lang;
* Java Virtual Machine tries to load a class and no definition of the class
* can be found. This could happen when using the <code>new</code> expression
* or during a normal method call. The reason this would occur at runtime is
- * because the missing class definition existed when the currently executing
+ * because the missing class definition existed when the currently executing
* class was compiled, but now that definition cannot be found.
*
* @author Brian Jones