Skip to content

Commit 56b4481

Browse files
committed
Fix comment.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1748431 13f79535-47bb-0310-9956-ffa450edef68
1 parent e2bbfcc commit 56b4481

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/org/apache/commons/csv/CSVFormat.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -885,7 +885,7 @@ public CSVPrinter print(final Appendable out) throws IOException {
885885
* @since 1.5
886886
*/
887887
public CSVPrinter print(final File out, Charset charset) throws IOException {
888-
// The FileWriter will be closed when close() is called.
888+
// The writer will be closed when close() is called.
889889
return new CSVPrinter(new OutputStreamWriter(new FileOutputStream(out), charset), this);
890890
}
891891

0 commit comments

Comments
 (0)