Author: ggregory
Date: Tue Jun 14 15:30:43 2016
New Revision: 1748431

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

Modified:
    commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java

Modified: 
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java
URL: 
http://svn.apache.org/viewvc/commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java?rev=1748431&r1=1748430&r2=1748431&view=diff
==============================================================================
--- 
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java 
(original)
+++ 
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java 
Tue Jun 14 15:30:43 2016
@@ -885,7 +885,7 @@ public final class CSVFormat implements
      * @since 1.5
      */
     public CSVPrinter print(final File out, Charset charset) throws 
IOException {
-        // The FileWriter will be closed when close() is called.
+        // The writer will be closed when close() is called.
         return new CSVPrinter(new OutputStreamWriter(new 
FileOutputStream(out), charset), this);
     }
 


Reply via email to