Update comment

This commit is contained in:
Yasuhiro Hatta 2017-07-09 14:38:09 +09:00
parent 88d88c6fae
commit 5ff2177938
1 changed files with 3 additions and 3 deletions

View File

@ -354,10 +354,10 @@ extension CSVReader {
//extension CSVReader {
//
// public func enumerateRows(_ block: (([String], [String]?, inout Bool) throws -> Void)) throws {
// public func enumerateRows(_ block: ((CSVReader, inout Bool) throws -> Void)) throws {
// var stop = false
// while let row = readRow() {
// try block(row, headerRow, &stop)
// while next() != nil {
// try block(self, &stop)
// if stop {
// break
// }