From f4b3dcad41394e5fdeef67d08d7faa0b9de5c0e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marius=20=C5=BDil=C4=97nas?= Date: Tue, 22 May 2018 10:22:33 +0300 Subject: [PATCH] Typo fix Typo fix --- types/tedious/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/tedious/index.d.ts b/types/tedious/index.d.ts index 409ff67878..287e62d187 100644 --- a/types/tedious/index.d.ts +++ b/types/tedious/index.d.ts @@ -336,7 +336,7 @@ export declare class Request extends events.EventEmitter { /** * Add an input parameter to the request. - * @param name The parameter name. This should correspond to a parameter in the SQL, or a parameter that a called procedure expects. The name should not start '@'. + * @param name The parameter name. This should correspond to a parameter in the SQL, or a parameter that a called procedure expects. The name should not start with '@'. * @param type One of the supported data types. * @param value The value that the parameter is to be given. The Javascript type of the argument should match that documented for data types. * @param options Additional type options. Optional.