You are viewing a plain text version of this content. The canonical link for it is here.
Posted to kato-commits@incubator.apache.org by mo...@apache.org on 2009/10/21 13:35:01 UTC

svn commit: r828010 - /incubator/kato/trunk/org.apache.kato/kato.api/src/main/java/javax/tools/diagnostics/runtime/java/JavaClass.java

Author: monteith
Date: Wed Oct 21 13:35:00 2009
New Revision: 828010

URL: http://svn.apache.org/viewvc?rev=828010&view=rev
Log:
Fix spelling error in JavaClass javadoc. "superclas" instead of "superclass".

Modified:
    incubator/kato/trunk/org.apache.kato/kato.api/src/main/java/javax/tools/diagnostics/runtime/java/JavaClass.java

Modified: incubator/kato/trunk/org.apache.kato/kato.api/src/main/java/javax/tools/diagnostics/runtime/java/JavaClass.java
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato/kato.api/src/main/java/javax/tools/diagnostics/runtime/java/JavaClass.java?rev=828010&r1=828009&r2=828010&view=diff
==============================================================================
--- incubator/kato/trunk/org.apache.kato/kato.api/src/main/java/javax/tools/diagnostics/runtime/java/JavaClass.java (original)
+++ incubator/kato/trunk/org.apache.kato/kato.api/src/main/java/javax/tools/diagnostics/runtime/java/JavaClass.java Wed Oct 21 13:35:00 2009
@@ -134,7 +134,7 @@
     
     /**
      * <p>Get the set of fields declared in this class.</p>
-     * <p>Fields declared in any superclas of this class are not returned.</p>
+     * <p>Fields declared in any superclass of this class are not returned.</p>
      * <p>The returned list follows the standard semantics for javax.tools.diagnostics collections.</p>
      * <p>The returned list is never null but could be empty.</p>
      * 
@@ -147,7 +147,7 @@
     
     /**
      * <p>Get the set of methods declared in this class.</p>
-     * <p>Methods declared in any superclas of this class are not returned.</p>
+     * <p>Methods declared in any superclass of this class are not returned.</p>
      * <p>The returned list follows the standard semantics for javax.tools.diagnostics collections.</p>
      * <p>The returned list is never null but could be empty.</p>