diff options
-rw-r--r-- | cli/dts/lib.deno.shared_globals.d.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/dts/lib.deno.shared_globals.d.ts b/cli/dts/lib.deno.shared_globals.d.ts index e72e4f089..0c18920a6 100644 --- a/cli/dts/lib.deno.shared_globals.d.ts +++ b/cli/dts/lib.deno.shared_globals.d.ts @@ -315,7 +315,7 @@ declare function setInterval( /** Cancels a timed, repeating action which was previously started by a call * to `setInterval()` * - * const id = setInterval(()= > {console.log('hello');}, 500); + * const id = setInterval(() => {console.log('hello');}, 500); * ... * clearInterval(id); */ @@ -323,7 +323,7 @@ declare function clearInterval(id?: number): void; /** Cancels a scheduled action initiated by `setTimeout()` * - * const id = setTimeout(()= > {console.log('hello');}, 500); + * const id = setTimeout(() => {console.log('hello');}, 500); * ... * clearTimeout(id); */ |