From 8c026ee7c1e90f60548d1fb1910dae699c484e32 Mon Sep 17 00:00:00 2001 From: Tristan Fisher Date: Sat, 18 Apr 2020 22:47:35 -0400 Subject: [PATCH] does not exists -> does not exist --- migrate.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/migrate.go b/migrate.go index 3c61545..7df9041 100644 --- a/migrate.go +++ b/migrate.go @@ -145,7 +145,7 @@ func AddNamedMigration(filename string, up func(*sql.Tx) error, down func(*sql.T // migrations folder and go func registry, and key them by version. func CollectMigrations(dirpath string, current, target int64) (Migrations, error) { if _, err := os.Stat(dirpath); os.IsNotExist(err) { - return nil, fmt.Errorf("%s directory does not exists", dirpath) + return nil, fmt.Errorf("%s directory does not exist", dirpath) } var migrations Migrations