From 544a26f6b322a23ddd0efe735088a59d71996893 Mon Sep 17 00:00:00 2001 From: ansuz Date: Fri, 19 Jan 2018 10:25:29 +0100 Subject: [PATCH] fix a typo --- rpc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpc.js b/rpc.js index 87f01a057..eae1bf22f 100644 --- a/rpc.js +++ b/rpc.js @@ -773,7 +773,7 @@ var clearOwnedChannel = function (Env, channelId, unsafeKey, cb) { Env.msgStore.getChannelMetadata(channelId, function (e, metadata) { if (e) { return cb(e); } if (!(metadata && Array.isArray(metadata.owners))) { return void cb('E_NO_OWNERS'); } - // Confirm that the channel is owned by the user is question + // Confirm that the channel is owned by the user in question if (metadata.owners.indexOf(unsafeKey) === -1) { return void cb('INSUFFICIENT_PERMISSIONS'); }