Skip to content

Commit

Permalink
prepare 9.6.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nyamsprod committed Mar 17, 2020
1 parent 3d1c4f1 commit 7351a74
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

All Notable changes to `Csv` will be documented in this file

## Next - TBD
## 9.6.0 - 2020-03-17

### Added

Expand Down
2 changes: 1 addition & 1 deletion src/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ function delimiter_detect(Reader $csv, array $delimiters, int $limit = 1): array
};

$record_filter = static function (array $record): bool {
return count($record) > 1;
return 1 < count($record);
};

$stmt = Statement::create(null, 0, $limit);
Expand Down

0 comments on commit 7351a74

Please sign in to comment.