From 2f00e2ec3c076e4910008904bc01e09df097944e Mon Sep 17 00:00:00 2001 From: Azul Date: Mon, 10 Feb 2014 14:24:08 +0100 Subject: minor: rename var that holds a single user id to userId --- users/app/designs/message/by_user_ids_to_show.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'users/app/designs/message/by_user_ids_to_show.js') diff --git a/users/app/designs/message/by_user_ids_to_show.js b/users/app/designs/message/by_user_ids_to_show.js index 95ccd0d..e33566b 100644 --- a/users/app/designs/message/by_user_ids_to_show.js +++ b/users/app/designs/message/by_user_ids_to_show.js @@ -1,7 +1,7 @@ function (doc) { if (doc.type === 'Message' && doc.user_ids_to_show && Array.isArray(doc.user_ids_to_show)) { - doc.user_ids_to_show.forEach(function (userIdsToShow) { - emit(userIdsToShow, 1); + doc.user_ids_to_show.forEach(function (userId) { + emit(userId, 1); }); } -} \ No newline at end of file +} -- cgit v1.2.3