Skip to content

Commit

Permalink
Correct default arguments for SeparatorParams constructor in document…
Browse files Browse the repository at this point in the history
…ation

The docs listed `'''` as the default value for `pQuotedChar` in the codeblock, but `'"'` under the **Parameters** section.
The codeblock was wrong, and has now been corrected.
  • Loading branch information
Craftidore committed Sep 2, 2023
1 parent 23f370c commit 4afc626
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/rapidcsv_SeparatorParams.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Datastructure holding parameters controlling how the CSV data fields are separat
---

```c++
SeparatorParams (const char pSeparator = ',', const bool pTrim = false, const bool pHasCR = sPlatformHasCR, const bool pQuotedLinebreaks = false, const bool pAutoQuote = true, const char pQuoteChar = ''')
SeparatorParams (const char pSeparator = ',', const bool pTrim = false, const bool pHasCR = sPlatformHasCR, const bool pQuotedLinebreaks = false, const bool pAutoQuote = true, const char pQuoteChar = '"')
```
Constructor.
Expand Down

0 comments on commit 4afc626

Please sign in to comment.