From 19dbd29449817b56a37e8deac92e5cd6cc3412a0 Mon Sep 17 00:00:00 2001 From: Michael Miller Date: Sun, 2 Jun 2013 13:02:21 -0400 Subject: [PATCH] Fix spelling mistake in mocha method definition. --- mocha/mocha.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mocha/mocha.d.ts b/mocha/mocha.d.ts index 93b894ed6..572edbc71 100644 --- a/mocha/mocha.d.ts +++ b/mocha/mocha.d.ts @@ -24,7 +24,7 @@ declare function before(action: () => void): void; declare function before(action: (done: () => void) => void): void; -declare function aftet(action: () => void): void; +declare function after(action: () => void): void; declare function after(action: (done: () => void) => void): void;