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) {