diff options
Diffstat (limited to 'std/io')
-rw-r--r-- | std/io/ioutil.ts | 2 | ||||
-rw-r--r-- | std/io/ioutil_test.ts | 2 | ||||
-rw-r--r-- | std/io/readers.ts | 2 | ||||
-rw-r--r-- | std/io/util.ts | 2 | ||||
-rw-r--r-- | std/io/util_test.ts | 2 | ||||
-rw-r--r-- | std/io/writers.ts | 2 |
6 files changed, 6 insertions, 6 deletions
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"; |