docs(sqlStorage): string error in query example

This commit is contained in:
Felipe Wagner
2016-02-23 13:44:35 -03:00
parent ec4b5ce974
commit f7c8658993

View File

@ -23,7 +23,7 @@ const win :any = window;
* });
*
* // Sql storage also exposes the full engine underneath
* storage.query('insert into projects(name, data) values('Cool Project', 'blah')');
* storage.query('insert into projects(name, data) values("Cool Project", "blah")');
* storage.query('select * from projects').then((resp) => {})
* ```
*