diff --git a/src/api/endpoints/following/create.js b/src/api/endpoints/following/create.js
index 87615c270..953fd780d 100644
--- a/src/api/endpoints/following/create.js
+++ b/src/api/endpoints/following/create.js
@@ -52,7 +52,7 @@ module.exports = (params, user) =>
 		return rej('user not found');
 	}
 
-	// Check already following
+	// Check if already following
 	const exist = await Following.findOne({
 		follower_id: follower._id,
 		followee_id: followee._id,