From 84965de92c5b7e3e441bfe2e52f6352ff9d04058 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Tue, 21 Oct 2014 16:48:58 -0700 Subject: [PATCH] fix typo --- src/authcodedb.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/authcodedb.js b/src/authcodedb.js index 7ef670fcb..87650b783 100644 --- a/src/authcodedb.js +++ b/src/authcodedb.js @@ -59,7 +59,7 @@ function del(authCode, callback) { function clear(callback) { assert(typeof callback === 'function'); - database.run('DELETE FROM authocodes', function (error) { + database.run('DELETE FROM authcodes', function (error) { if (error) return callback(new DatabaseError(DatabaseError.INTERNAL_ERROR, error)); callback(null);