Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentlaucsb committed Jun 9, 2019
1 parent d13abb7 commit 143de29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 143de29

Please sign in to comment.