diff options
Diffstat (limited to 'std/async/delay.ts')
-rw-r--r-- | std/async/delay.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/async/delay.ts b/std/async/delay.ts index e3aec368f..0a9e1f529 100644 --- a/std/async/delay.ts +++ b/std/async/delay.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. /* Resolves after the given number of milliseconds. */ export function delay(ms: number): Promise<void> { return new Promise((res): number => |