From 2c7b320fe61e9a352de7d4887ff8b9af5ddfb020 Mon Sep 17 00:00:00 2001 From: Aya Morisawa Date: Mon, 27 Feb 2017 16:14:41 +0900 Subject: [PATCH] Fix typo: Authetication -> Authentication --- src/api/api-handler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/api-handler.ts b/src/api/api-handler.ts index ccd4e89a0..45b3c6123 100644 --- a/src/api/api-handler.ts +++ b/src/api/api-handler.ts @@ -10,7 +10,7 @@ export default async (endpoint: IEndpoint, req: express.Request, res: express.Re const reply = _reply.bind(null, res); let ctx: IAuthContext; - // Authetication + // Authentication try { ctx = await authenticate(req); } catch (e) {