diff --git a/src/entities/BaseRequestsHandler.ts b/src/entities/BaseRequestsHandler.ts index 467294a..4891feb 100644 --- a/src/entities/BaseRequestsHandler.ts +++ b/src/entities/BaseRequestsHandler.ts @@ -261,7 +261,7 @@ export abstract class BaseRequestsHandler implements AbstractUserConnectionConta const friendID = await this.postUserId(name); if(!await FriendsHelper.AreFriend(this.getUserId(), friendID)) - this.error(401, "You are not friend with this personn!"); + this.error(401, "You are not friend with this person!"); return friendID; }