Skip to content

Commit

Permalink
Fix docs for CSV::Builder#row(&) (#14736)
Browse files Browse the repository at this point in the history
  • Loading branch information
philipp-classen committed Jun 24, 2024
1 parent 4f31615 commit 7d8e243
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/csv/builder.cr
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class CSV::Builder
@first_cell_in_row = true
end

# Yields a `CSV::Row` to append a row. A newline is appended
# Yields a `CSV::Builder::Row` to append a row. A newline is appended
# to `IO` after the block exits.
def row(&)
yield Row.new(self, @separator, @quote_char, @quoting)
Expand Down

0 comments on commit 7d8e243

Please sign in to comment.