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 2011/10/28 18:49:38 UTC

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

Author: ggregory
Date: Fri Oct 28 16:49:38 2011
New Revision: 1190439

URL: http://svn.apache.org/viewvc?rev=1190439&view=rev
Log:
Fix Javadoc typos.

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

Modified: commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/operations/FileOperation.java
URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/operations/FileOperation.java?rev=1190439&r1=1190438&r2=1190439&view=diff
==============================================================================
--- commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/operations/FileOperation.java (original)
+++ commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/operations/FileOperation.java Fri Oct 28 16:49:38 2011
@@ -20,12 +20,12 @@ import org.apache.commons.vfs2.FileSyste
 
 /**
  * <p>
- * A FileOperation is an object that brings an extra functions to a FileObject.
- * The VFS provides the basic functionality to deal with FileObject's. Tha is
- * create, delete, rename, copy, etc functions. However, if you are working with
+ * A FileOperation is an object that brings an extra function to a FileObject.
+ * The VFS provides the basic functionality to deal with FileObject's. That is
+ * create, delete, rename, copy, and so on functions. However, if you are working with
  * FileSystem and its files are, for example, under Version Control System (VCS)
  * you might want to get an access to the versioning framework and to be able to
- * manage your files regarding VCS (e.g. commit them, undate, get logs, etc.).
+ * manage your files regarding VCS (e.g. commit them, update, get logs, etc.).
  * Such type of extended functionality is provided by FileOperation.
  * </p>
  * <p>