From 07f6622acaae91c4d8d7d2d6066a888f9b9f3cbb Mon Sep 17 00:00:00 2001 From: Pierre HUBERT Date: Tue, 30 Jun 2020 14:34:14 +0200 Subject: [PATCH] Fix typo --- src/entities/BaseRequestsHandler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }