From 712495b041eda7a3e64c4bd2bd8c8ec190edb8e6 Mon Sep 17 00:00:00 2001 From: Prashant Tiwari Date: Fri, 30 Dec 2016 00:29:10 +0530 Subject: [PATCH] Fix typo --- code/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/index.d.ts b/code/index.d.ts index 37cbdb224f..dacd122915 100644 --- a/code/index.d.ts +++ b/code/index.d.ts @@ -9,7 +9,7 @@ export function expect(value: T | T[], prefix?: string): AssertionChain; export function fail(message: string): void; /** Returns the total number of assertions created using the expect() method. */ export function count(): number; -/** Returns an array of the locations where incomplete assertions were exportd or null if no incomplete assertions found. */ +/** Returns an array of the locations where incomplete assertions were declared or null if no incomplete assertions found. */ export function incomplete(): string[] | null; /** Returns the filename, line number, and column number of where the error was created. */ export function thrownAt(error?: Error): CodeError;