Merge pull request #5573 from felipew/patch-1

docs(sqlStorage): string error in query example
This commit is contained in:
Adam Bradley
2016-02-23 11:37:01 -06:00

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) => {})
* ```
*