Skip to content

Commit 461e8ee

Browse files
committed
Add missing link to recent til
1 parent 6a54d5e commit 461e8ee

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

ruby/create-a-csv-table-object.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
# Create A CSV::Table Object
22

33
When you parse a file or string using `CSV.parse` (with `headers = true`) you
4-
get a [`CSV::Table`]() object in response. This object can be used to read what
5-
was in a file or it can be used to create a new file. It is also handy as a
6-
potential test object if you want to assume, but omit, file reading in a unit
7-
test.
4+
get a
5+
[`CSV::Table`](https://ruby-doc.org/stdlib-2.5.1/libdoc/csv/rdoc/CSV/Table.html)
6+
object in response. This object can be used to read what was in a file or it
7+
can be used to create a new file. It is also handy as a potential test object
8+
if you want to assume, but omit, file reading in a unit test.
89

910
You can create a `CSV::Table` one of the following two ways. First, with a file:
1011

0 commit comments

Comments
 (0)