Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/Text-CSV.md
Original file line number Diff line number Diff line change
Expand Up @@ -2669,7 +2669,7 @@ And below should be the complete list of error codes that can be returned:

The header line parsed in the ["header"](#header) is contains an empty field.

- 1013 "INI - the header contains nun-unique fields"
- 1013 "INI - the header contains non-unique fields"


The header line parsed in the ["header"](#header) contains at least two identical
Expand Down
2 changes: 1 addition & 1 deletion doc/Text-CSV.pod
Original file line number Diff line number Diff line change
Expand Up @@ -2806,7 +2806,7 @@ X<1012>
The header line parsed in the L</header> is contains an empty field.

=item *
1013 "INI - the header contains nun-unique fields"
1013 "INI - the header contains non-unique fields"
X<1013>

The header line parsed in the L</header> contains at least two identical
Expand Down
2 changes: 1 addition & 1 deletion lib/Text/CSV.rakumod
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ my constant %errors =
1010 => "INI - the header is empty",
1011 => "INI - the header contains more than one valid separator",
1012 => "INI - the header contains an empty field",
1013 => "INI - the header contains nun-unique fields",
1013 => "INI - the header contains non-unique fields",
# 1014 => "INI - header called on undefined stream",

# Syntax errors
Expand Down