summaryrefslogtreecommitdiff
path: root/src/api/endpoints/users
diff options
context:
space:
mode:
authorsyuilo⭐️ <Syuilotan@yahoo.co.jp>2017-03-14 15:53:25 +0900
committerGitHub <noreply@github.com>2017-03-14 15:53:25 +0900
commit9e8d4f61b287eb30acf9ce76d543e20479aa524f (patch)
treebbe3bf08301109474bb849c997d71cf467ffe199 /src/api/endpoints/users
parentFix bug (diff)
downloadsharkey-9e8d4f61b287eb30acf9ce76d543e20479aa524f.tar.gz
sharkey-9e8d4f61b287eb30acf9ce76d543e20479aa524f.tar.bz2
sharkey-9e8d4f61b287eb30acf9ce76d543e20479aa524f.zip
typo
Diffstat (limited to 'src/api/endpoints/users')
-rw-r--r--src/api/endpoints/users/recommendation.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/endpoints/users/recommendation.ts b/src/api/endpoints/users/recommendation.ts
index a096261e58..731d68a7b1 100644
--- a/src/api/endpoints/users/recommendation.ts
+++ b/src/api/endpoints/users/recommendation.ts
@@ -23,7 +23,7 @@ module.exports = (params, me) => new Promise(async (res, rej) => {
const [offset = 0, offsetErr] = $(params.offset).optional.number().min(0).$;
if (offsetErr) return rej('invalid offset param');
- // ID list of the user $self and other users who the user follows
+ // ID list of the user itself and other users who the user follows
const followingIds = await getFriends(me._id);
const users = await User