Fix comment.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1748431 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2016-06-14 15:30:43 +00:00
parent e2bbfcc6d3
commit 56b448111f
1 changed files with 1 additions and 1 deletions

View File

@ -885,7 +885,7 @@ public final class CSVFormat implements Serializable {
* @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);
}