Skip to content

Commit

Permalink
fix(sqlite): fix method attribute typo (#324)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcinwadon authored and ihadeed committed Jul 18, 2016
1 parent 5772582 commit 006bc70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/sqlite.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ export class SQLite {
executeSql(statement: string, params: any): Promise<any> { return; }

@CordovaInstance()
addSatement(sql, values): Promise<any> { return; }
addStatement(sql, values): Promise<any> { return; }

@CordovaInstance()
sqlBatch(sqlStatements: any): Promise<any> { return; }
Expand Down

0 comments on commit 006bc70

Please sign in to comment.