From 2cb61d3d5a945b63c1b669fbfe5b28edc0dc784e Mon Sep 17 00:00:00 2001 From: Max Lynch Date: Wed, 3 Aug 2016 21:37:59 -0500 Subject: [PATCH] chore(sql): Update comment --- src/platform/storage/sql.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/platform/storage/sql.ts b/src/platform/storage/sql.ts index 78dc5859a7..d2d7e2213b 100644 --- a/src/platform/storage/sql.ts +++ b/src/platform/storage/sql.ts @@ -6,8 +6,9 @@ const DB_NAME: string = '__ionicstorage'; const win: any = window; /** - * SqlStorage uses SQLite or WebSQL (development only!) to store data in a - * persistent SQL store on the filesystem. + * SqlStorage is a wrapper that uses SQLite when running natively (if available) + * to store data in a persistent SQL store on the filesystem + * or uses WebSQL when serving the app to the browser. * * This is the preferred storage engine, as data will be stored in appropriate * app storage, unlike Local Storage which is treated differently by the OS.