From 5f3640c670e579b0023cc9b94f197e7c54be9ae5 Mon Sep 17 00:00:00 2001 From: SubHero Date: Wed, 7 Nov 2018 09:18:27 +0100 Subject: [PATCH] Fix typo --- src/Database.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Database.js b/src/Database.js index 6876a93..b28bf39 100644 --- a/src/Database.js +++ b/src/Database.js @@ -170,7 +170,7 @@ class Database { throw new Error(`No migration files found in '${location}'.`); } - // Ge the list of migrations, for example: + // Get the list of migrations, for example: // { id: 1, name: 'initial', filename: '001-initial.sql', up: ..., down: ... } // { id: 2, name: 'feature', fielname: '002-feature.sql', up: ..., down: ... } await Promise.all(migrations.map(migration => new this.Promise((resolve, reject) => {