+ Fix incorrect method name 'withFirstRowAsHeader' in user guide.Negative numeric values in the first column are always quoted in minimal mode.Update platform requirement from Java 6 to 7.CSVParser: Add factory method accepting InputStream.
diff --git a/src/site/xdoc/user-guide.xml b/src/site/xdoc/user-guide.xml
index e0d56943..1f89ebe8 100644
--- a/src/site/xdoc/user-guide.xml
+++ b/src/site/xdoc/user-guide.xml
@@ -143,7 +143,7 @@ for (CSVRecord record : records) {
Some CSV files define header names in their first record. If configured, Apache Commons CSV can parse
the header names from the first record:
Reader in = new FileReader("path/to/file.csv");
-Iterable<CSVRecord> records = CSVFormat.RFC4180.withFirstRowAsHeader().parse(in);
+Iterable<CSVRecord> records = CSVFormat.RFC4180.withFirstRecordAsHeader().parse(in);
for (CSVRecord record : records) {
String id = record.get("ID");
String customerNo = record.get("CustomerNo");