From 461e8eea23e67d610c400a9726f319612b3c1815 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Fri, 27 Mar 2020 16:54:13 -0500 Subject: [PATCH] Add missing link to recent til --- ruby/create-a-csv-table-object.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/ruby/create-a-csv-table-object.md b/ruby/create-a-csv-table-object.md index 9e2e67a..ba7241d 100644 --- a/ruby/create-a-csv-table-object.md +++ b/ruby/create-a-csv-table-object.md @@ -1,10 +1,11 @@ # Create A CSV::Table Object When you parse a file or string using `CSV.parse` (with `headers = true`) you -get a [`CSV::Table`]() object in response. This object can be used to read what -was in a file or it can be used to create a new file. It is also handy as a -potential test object if you want to assume, but omit, file reading in a unit -test. +get a +[`CSV::Table`](https://ruby-doc.org/stdlib-2.5.1/libdoc/csv/rdoc/CSV/Table.html) +object in response. This object can be used to read what was in a file or it +can be used to create a new file. It is also handy as a potential test object +if you want to assume, but omit, file reading in a unit test. You can create a `CSV::Table` one of the following two ways. First, with a file: