Skip to content

Commit 1b1e945

Browse files
authored
Fix return value in documentation
1 parent 16ed7e9 commit 1b1e945

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sources/declarative/decodable/DecoderSequence.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ extension CSVDecoder {
77
self.source = source
88
}
99

10-
/// Advances to the next row and returns a `CSVRowDecoder`, or `nil` if no next row exists.
10+
/// Advances to the next row and returns a `LazySequence.Row`, or `nil` if no next row exists.
1111
public mutating func next() -> Row? {
1212
guard !self.source.isRowAtEnd(index: self.currentIndex) else {
1313
return nil

0 commit comments

Comments
 (0)