summaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
authorConnor Burton <me@connorburton.com>2023-05-22 15:04:28 +0100
committerGitHub <noreply@github.com>2023-05-22 14:04:28 +0000
commit19f1823e4435f9eb53c23f8ee809d376c7b22700 (patch)
tree630dfa9aa3d1d74d784010acbd51f0d02b3d03be /cli
parentffd3ed9b8ad34471a0ba30727b7321f86c0a30b5 (diff)
docs: be explicit in the unit of time of delay in setTimeout (#19207)
Diffstat (limited to 'cli')
-rw-r--r--cli/tsc/dts/lib.deno.shared_globals.d.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tsc/dts/lib.deno.shared_globals.d.ts b/cli/tsc/dts/lib.deno.shared_globals.d.ts
index 69850f0b2..603cc78f2 100644
--- a/cli/tsc/dts/lib.deno.shared_globals.d.ts
+++ b/cli/tsc/dts/lib.deno.shared_globals.d.ts
@@ -348,7 +348,7 @@ declare namespace WebAssembly {
export function validate(bytes: BufferSource): boolean;
}
-/** Sets a timer which executes a function once after the timer expires. Returns
+/** Sets a timer which executes a function once after the delay (in milliseconds) elapses. Returns
* an id which may be used to cancel the timeout.
*
* ```ts