From 3e9e201b6f3afdec61f93e24f333a7f5ca32d8ee Mon Sep 17 00:00:00 2001 From: Matthew Davis <7035647+mdavis-xyz@users.noreply.github.com> Date: Thu, 9 Nov 2023 04:04:32 +0100 Subject: [PATCH] fix typo (dbListTable to dbListTables) (#1590) --- databases.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/databases.qmd b/databases.qmd index b67287b..2888798 100644 --- a/databases.qmd +++ b/databases.qmd @@ -136,7 +136,7 @@ We'll also show off a useful technique for loading multiple files into a databas ### DBI basics -You can check that the data is loaded correctly by using a couple of other DBI functions: `dbListTable()` lists all tables in the database[^databases-3] and `dbReadTable()` retrieves the contents of a table. +You can check that the data is loaded correctly by using a couple of other DBI functions: `dbListTables()` lists all tables in the database[^databases-3] and `dbReadTable()` retrieves the contents of a table. [^databases-3]: At least, all the tables that you have permission to see.