From bfab4ed0dfa5e2034005133a257201c934bc3a80 Mon Sep 17 00:00:00 2001 From: Ry Dahl Date: Thu, 2 Jan 2020 15:13:47 -0500 Subject: Happy new year! (#3578) --- std/io/ioutil.ts | 2 +- std/io/ioutil_test.ts | 2 +- std/io/readers.ts | 2 +- std/io/util.ts | 2 +- std/io/util_test.ts | 2 +- std/io/writers.ts | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) (limited to 'std/io') diff --git a/std/io/ioutil.ts b/std/io/ioutil.ts index f1ca54e14..83d639463 100644 --- a/std/io/ioutil.ts +++ b/std/io/ioutil.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. import { BufReader, UnexpectedEOFError } from "./bufio.ts"; type Reader = Deno.Reader; type Writer = Deno.Writer; diff --git a/std/io/ioutil_test.ts b/std/io/ioutil_test.ts index 97ab244c0..26f307a6b 100644 --- a/std/io/ioutil_test.ts +++ b/std/io/ioutil_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. const { Buffer } = Deno; type Reader = Deno.Reader; import { test } from "../testing/mod.ts"; diff --git a/std/io/readers.ts b/std/io/readers.ts index 0208de413..5b1bf1948 100644 --- a/std/io/readers.ts +++ b/std/io/readers.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. type Reader = Deno.Reader; import { encode } from "../strings/mod.ts"; diff --git a/std/io/util.ts b/std/io/util.ts index 7ecf0e48d..1226640bd 100644 --- a/std/io/util.ts +++ b/std/io/util.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. const { Buffer, mkdir, open } = Deno; type File = Deno.File; type Reader = Deno.Reader; diff --git a/std/io/util_test.ts b/std/io/util_test.ts index 4f97bf5ef..472b0dfb9 100644 --- a/std/io/util_test.ts +++ b/std/io/util_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. const { remove } = Deno; import { test } from "../testing/mod.ts"; import { assert, assertEquals } from "../testing/asserts.ts"; diff --git a/std/io/writers.ts b/std/io/writers.ts index 91d19a9d7..f23277f4c 100644 --- a/std/io/writers.ts +++ b/std/io/writers.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. type Writer = Deno.Writer; import { decode, encode } from "../strings/mod.ts"; -- cgit v1.2.3