diff --git a/src/api/endpoints/following/create.js b/src/api/endpoints/following/create.js
index 9810318be4..87615c2708 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 arleady following
+	// Check already following
 	const exist = await Following.findOne({
 		follower_id: follower._id,
 		followee_id: followee._id,