From b06e19bee86bd1049c92ed1bf8cae30e14c24766 Mon Sep 17 00:00:00 2001 From: Zev Spitz Date: Tue, 31 Mar 2015 14:43:10 +0300 Subject: [PATCH] Missing ; --- src/lib/scriptHost.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/scriptHost.d.ts b/src/lib/scriptHost.d.ts index 9f7b773b318..eaf3cfc2d99 100644 --- a/src/lib/scriptHost.d.ts +++ b/src/lib/scriptHost.d.ts @@ -82,8 +82,8 @@ interface ITextReader extends ITextStreamBase { declare var WScript: { /** - * Outputs text to either a message box (under WScript.exe) or the command console window followed by a newline (under CScript.ext). - */ + * Outputs text to either a message box (under WScript.exe) or the command console window followed by a newline (under CScript.ext). + */ Echo(s: any): void; /** * Exposes the write-only error output stream for the current script. @@ -163,4 +163,4 @@ declare var WScript: { * @param intTime Interval (in milliseconds) to suspend script execution. */ Sleep(intTime: number): void; -} +};