Author: ggregory Date: Mon May 23 20:17:13 2016 New Revision: 1745256 URL: http://svn.apache.org/viewvc?rev=1745256&view=rev Log: Order list in AB order.
Modified: commons/proper/csv/trunk/src/site/xdoc/user-guide.xml Modified: commons/proper/csv/trunk/src/site/xdoc/user-guide.xml URL: http://svn.apache.org/viewvc/commons/proper/csv/trunk/src/site/xdoc/user-guide.xml?rev=1745256&r1=1745255&r2=1745256&view=diff ============================================================================== --- commons/proper/csv/trunk/src/site/xdoc/user-guide.xml (original) +++ commons/proper/csv/trunk/src/site/xdoc/user-guide.xml Mon May 23 20:17:13 2016 @@ -34,10 +34,10 @@ limitations under the License. The CSVFormat class provides some commonly used CSV variants: <dl> - <dt>RFC-4180</dt><dd>The format defined by <a href="https://tools.ietf.org/html/rfc4180">RFC-4180</a></dd> + <dt>EXCEL</dt><dd>The format used by Excel</dd> <dt>MYSQL</dt><dd>The format used by MySQL data bases</dd> + <dt>RFC-4180</dt><dd>The format defined by <a href="https://tools.ietf.org/html/rfc4180">RFC-4180</a></dd> <dt>TDF</dt><dd>A tab delimited format</dd> - <dt>EXCEL</dt><dd>The format used by Excel</dd> </dl> <subsection name="Example: Parsing an Excel CSV File">