Skip to content

Commit

Permalink
parsecsv: fix '\0' being displayed as '0' in docs (#15086) [backport]
Browse files Browse the repository at this point in the history
(cherry picked from commit a62bc55)
  • Loading branch information
Jjp137 authored and narimiran committed Jul 29, 2020
1 parent f2844ba commit 896c3c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/pure/parsecsv.nim
Original file line number Diff line number Diff line change
Expand Up @@ -108,10 +108,10 @@ proc open*(my: var CsvParser, input: Stream, filename: string,
## the diverse optional parameters:
## - `separator`: character used to separate fields
## - `quote`: Used to quote fields containing special characters like
## `separator`, `quote` or new-line characters. '\0' disables the parsing
## `separator`, `quote` or new-line characters. '\\0' disables the parsing
## of quotes.
## - `escape`: removes any special meaning from the following character;
## '\0' disables escaping; if escaping is disabled and `quote` is not '\0',
## '\\0' disables escaping; if escaping is disabled and `quote` is not '\\0',
## two `quote` characters are parsed one literal `quote` character.
## - `skipInitialSpace`: If true, whitespace immediately following the
## `separator` is ignored.
Expand Down

0 comments on commit 896c3c4

Please sign in to comment.