From 143de29fef1880021930fd4e7a1b9ffff672fb79 Mon Sep 17 00:00:00 2001 From: Vincent La Date: Sun, 9 Jun 2019 16:43:50 -0700 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8a73e108..0c2ba914 100644 --- a/README.md +++ b/README.md @@ -195,12 +195,12 @@ for (auto& row: reader) { #### Trimming Whitespace This parser can efficiently trim off leading and trailing whitespace. Of course, -make sure you don't include your intended delimiter in the list of characters +make sure you don't include your intended delimiter or newlines in the list of characters to trim. ```cpp CSVFormat format; -format.trim({ ' ', '\t', '\n' }); +format.trim({ ' ', '\t' }); ``` #### Setting Column Names