From 39cf27508291a55ed46b6e8005bd9073d5ccefcb Mon Sep 17 00:00:00 2001 From: "Nam D. Nguyen" Date: Fri, 6 Dec 2019 13:07:19 -0600 Subject: [PATCH] Fix typo in README for table import (#235) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 293677dc74..45ed44b0df 100644 --- a/README.md +++ b/README.md @@ -179,7 +179,7 @@ $ head -n3 data.csv state,population Delaware,59096 Maryland,319728 -$ dolt import table -pk=state state_populations data.csv +$ dolt table import -pk=state state_populations data.csv ``` Note if you do not have a file extension, i.e. your file is called `data`, Dolt will think you are trying to import from another table and thus not behave in the way you expect.