Fix typo: Authetication -> Authentication

This commit is contained in:
Aya Morisawa 2017-02-27 16:14:41 +09:00
parent 78ad48dfc9
commit 2c7b320fe6

View file

@ -10,7 +10,7 @@ export default async (endpoint: IEndpoint, req: express.Request, res: express.Re
const reply = _reply.bind(null, res); const reply = _reply.bind(null, res);
let ctx: IAuthContext; let ctx: IAuthContext;
// Authetication // Authentication
try { try {
ctx = await authenticate(req); ctx = await authenticate(req);
} catch (e) { } catch (e) {