Skip to content

Commit d0dac8e

Browse files
committed
reverting to iff
1 parent 40e8027 commit d0dac8e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/fread.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ enum quote_rule_t
4747
// Fields may be quoted, but any quotes inside will appear verbatim and
4848
// not escaped in any way. It is not always possible to parse the file
4949
// unambiguously, but we give it a try anyways. A quote will be presumed
50-
// to mark the end of the field if it is followed by the field separator.
50+
// to mark the end of the field iff it is followed by the field separator.
5151
// Under this rule eol characters cannot appear inside the field.
5252
// For example: <<...,"hello "world"",...>>
5353
QUOTE_RULE_EMBEDDED_QUOTES_NOT_ESCAPED,
@@ -292,7 +292,7 @@ static inline bool eol(const char **pch)
292292
}
293293

294294
/**
295-
* Return True if `ch` is a valid field terminator character: either a field
295+
* Return True iff `ch` is a valid field terminator character: either a field
296296
* separator or a newline.
297297
*/
298298
static inline bool end_of_field(const char *ch)

0 commit comments

Comments
 (0)