You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mt...@apache.org on 2009/04/17 15:20:01 UTC

svn commit: r765986 - /commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/Descriptor.java

Author: mturk
Date: Fri Apr 17 13:20:00 2009
New Revision: 765986

URL: http://svn.apache.org/viewvc?rev=765986&view=rev
Log:
Fix typo

Modified:
    commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/Descriptor.java

Modified: commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/Descriptor.java
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/Descriptor.java?rev=765986&r1=765985&r2=765986&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/Descriptor.java (original)
+++ commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/Descriptor.java Fri Apr 17 13:20:00 2009
@@ -75,7 +75,7 @@
      * </p>
      * @see java.io.Closeable#close()
      * @throws IOException if an I/O error occurs.
-     * @thrown InstantiationException if native class loader was not initialized.
+     * @throws InstantiationException if native class loader was not initialized.
      */
     public final void close()
         throws IOException
@@ -92,7 +92,7 @@
      * Force the underlying object to synchonize any buffered data.
      * @throws SyncFailedException when the object cannot be flushed.
      * @throws IOException if an I/O error occurs.
-     * @thrown InstantiationException if native class loader was not initialized.
+     * @throws InstantiationException if native class loader was not initialized.
      */
     public final void sync()
         throws SyncFailedException, IOException, InstantiationException