From 90dd6ead84d4bfe115457c61c47c72ff20d7d049 Mon Sep 17 00:00:00 2001 From: Santi Albo Date: Wed, 12 Mar 2014 11:49:04 +0000 Subject: [PATCH] Fix typo on restify type definition InvalidArgu**e**mentError => InvalidArgumentError --- restify/restify.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/restify/restify.d.ts b/restify/restify.d.ts index 2afacc520..2b447d11b 100644 --- a/restify/restify.d.ts +++ b/restify/restify.d.ts @@ -167,7 +167,7 @@ declare module "restify" { export function createClient(options?: ClientOptions): HttpClient; export class ConflictError { constructor(message?: any); } - export class InvalidArguementError { constructor(message?: any); } + export class InvalidArgumentError { constructor(message?: any); } export class RestError { constructor(message?: any); } export class BadDigestError { constructor(message: any); } export class BadMethodError { constructor(message: any); }