Javadoc tweak

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1307042 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2012-03-29 18:48:47 +00:00
parent aae00f39ad
commit 3296f59696

View File

@ -387,11 +387,11 @@ public class CSVFormat implements Serializable {
* Returns a copy of this format using the specified header. The header can
* either be parsed automatically from the input file with:
*
* <pre>CSVFormat format = CSVFormat.DEFAULT.withHeader();</pre>
* <pre>CSVFormat format = aformat.withHeader();</pre>
*
* or specified manually with:
*
* <pre>CSVFormat format = CSVFormat.DEFAULT.withHeader("name", "email", "phone");</pre>
* <pre>CSVFormat format = aformat.withHeader("name", "email", "phone");</pre>
*
* @param header the header, <tt>null</tt> if disabled, empty if parsed automatically, user specified otherwise.
*