From 9e34235abbb030c3c4a7a0cf25c8e0e3e7bdef08 Mon Sep 17 00:00:00 2001 From: Klaus Karkia Date: Tue, 9 Feb 2016 15:53:07 +0200 Subject: [PATCH] Corrected documented signature for remove() method Documentation claimed the remove() method took two parameters: key and value, whereas in reality it only takes one: the key to be removed, as one would expect. --- ionic/platform/storage/sql.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/ionic/platform/storage/sql.ts b/ionic/platform/storage/sql.ts index 69b58a9027..c01bda6706 100644 --- a/ionic/platform/storage/sql.ts +++ b/ionic/platform/storage/sql.ts @@ -186,7 +186,6 @@ export class SqlStorage extends StorageEngine { /** * Remove the value in the database for the given key. * @param {string} key the key - * @param {string} value The value (as a string) * @return {Promise} that resolves or rejects with an object of the form { tx: Transaction, res: Result (or err)} */ remove(key: string): Promise {