diff --git a/cli/dts/lib.deno.shared_globals.d.ts b/cli/dts/lib.deno.shared_globals.d.ts index e72e4f089a8ce9..0c18920a68ccb3 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); */