summaryrefslogtreecommitdiff
path: root/std/signal
diff options
context:
space:
mode:
Diffstat (limited to 'std/signal')
-rw-r--r--std/signal/mod.ts2
-rw-r--r--std/signal/test.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/std/signal/mod.ts b/std/signal/mod.ts
index 7c662ea6e..c28cf5e99 100644
--- a/std/signal/mod.ts
+++ b/std/signal/mod.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.
import { MuxAsyncIterator } from "../async/mux_async_iterator.ts";
export type Disposable = { dispose: () => void };
diff --git a/std/signal/test.ts b/std/signal/test.ts
index 043d638de..d56b7920d 100644
--- a/std/signal/test.ts
+++ b/std/signal/test.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.
import { assertEquals, assertThrows } from "../testing/asserts.ts";
import { delay } from "../async/delay.ts";
import { onSignal, signal } from "./mod.ts";