summaryrefslogtreecommitdiff
path: root/src/api/api-handler.ts
diff options
context:
space:
mode:
authorAya Morisawa <AyaMorisawa4869@gmail.com>2017-02-27 16:14:41 +0900
committerAya Morisawa <AyaMorisawa4869@gmail.com>2017-02-27 17:39:23 +0900
commit2c7b320fe61e9a352de7d4887ff8b9af5ddfb020 (patch)
treefc47dcb230f5e1c92b2b0271d25193370cae995c /src/api/api-handler.ts
parentFix typo: proccess -> process (diff)
downloadsharkey-2c7b320fe61e9a352de7d4887ff8b9af5ddfb020.tar.gz
sharkey-2c7b320fe61e9a352de7d4887ff8b9af5ddfb020.tar.bz2
sharkey-2c7b320fe61e9a352de7d4887ff8b9af5ddfb020.zip
Fix typo: Authetication -> Authentication
Diffstat (limited to 'src/api/api-handler.ts')
-rw-r--r--src/api/api-handler.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/api-handler.ts b/src/api/api-handler.ts
index ccd4e89a04..45b3c6123e 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) {