diff --git a/src/plugins/sqlite.ts b/src/plugins/sqlite.ts index cb72e935..37768738 100644 --- a/src/plugins/sqlite.ts +++ b/src/plugins/sqlite.ts @@ -21,7 +21,7 @@ declare var sqlitePlugin; * }) * .then((db: SQLite) => { * - * db.executeSQL('create table danceMoves(name VARCHAR(32))').then(() => {}).catch(() => {}); + * db.executeSql('create table danceMoves(name VARCHAR(32))').then(() => {}).catch(() => {}); * * }) * .catch(error => console.error('Error opening database', error);