You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2012/07/16 16:19:45 UTC

svn commit: r1362053 - /commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/operations/AbstractFileOperationProvider.java

Author: ggregory
Date: Mon Jul 16 14:19:45 2012
New Revision: 1362053

URL: http://svn.apache.org/viewvc?rev=1362053&view=rev
Log:
Fix spelling errors.

Modified:
    commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/operations/AbstractFileOperationProvider.java

Modified: commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/operations/AbstractFileOperationProvider.java
URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/operations/AbstractFileOperationProvider.java?rev=1362053&r1=1362052&r2=1362053&view=diff
==============================================================================
--- commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/operations/AbstractFileOperationProvider.java (original)
+++ commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/operations/AbstractFileOperationProvider.java Mon Jul 16 14:19:45 2012
@@ -35,7 +35,7 @@ public abstract class AbstractFileOperat
      * Available operations. Operations could be registered for different schemes.
      * Some operations can work only for "file" scheme, other - for "svnhttp(s)",
      * "svn", "svnssh", but not for "file", etc. The Map has scheme as a key and
-     * Colleaction of operations that are available for that scheme.
+     * Collection of operations that are available for that scheme.
      */
     private final Collection<Class<? extends FileOperation>> operations =
         new ArrayList<Class<? extends FileOperation>>();
@@ -45,7 +45,7 @@ public abstract class AbstractFileOperat
      * specified operationsList.
      *
      * @param operationsList
-     *            the list of available operations for the specivied FileObject.
+     *            the list of available operations for the specified FileObject.
      *            The operationList contains classes of available operations, e.g.
      *            Class objects.
      * @param file