diff options
Diffstat (limited to 'std/io')
-rw-r--r-- | std/io/_iotest.ts | 2 | ||||
-rw-r--r-- | std/io/bufio.ts | 2 | ||||
-rw-r--r-- | std/io/bufio_test.ts | 2 | ||||
-rw-r--r-- | std/io/ioutil.ts | 2 | ||||
-rw-r--r-- | std/io/ioutil_test.ts | 2 | ||||
-rw-r--r-- | std/io/mod.ts | 2 | ||||
-rw-r--r-- | std/io/readers.ts | 2 | ||||
-rw-r--r-- | std/io/readers_test.ts | 2 | ||||
-rw-r--r-- | std/io/streams.ts | 2 | ||||
-rw-r--r-- | std/io/streams_test.ts | 2 | ||||
-rw-r--r-- | std/io/test.ts | 2 | ||||
-rw-r--r-- | std/io/writers.ts | 2 | ||||
-rw-r--r-- | std/io/writers_test.ts | 2 |
13 files changed, 13 insertions, 13 deletions
diff --git a/std/io/_iotest.ts b/std/io/_iotest.ts index 726e7e2a6..5905d2552 100644 --- a/std/io/_iotest.ts +++ b/std/io/_iotest.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.// Ported to Deno from +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.// Ported to Deno from // Copyright 2009 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. diff --git a/std/io/bufio.ts b/std/io/bufio.ts index da44729b2..f3b1893cb 100644 --- a/std/io/bufio.ts +++ b/std/io/bufio.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. // Based on https://github.com/golang/go/blob/891682/src/bufio/bufio.go // Copyright 2009 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style diff --git a/std/io/bufio_test.ts b/std/io/bufio_test.ts index 3cba3b704..8715cc3b8 100644 --- a/std/io/bufio_test.ts +++ b/std/io/bufio_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. // Based on https://github.com/golang/go/blob/891682/src/bufio/bufio_test.go // Copyright 2009 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style diff --git a/std/io/ioutil.ts b/std/io/ioutil.ts index da48e95ab..d213095d9 100644 --- a/std/io/ioutil.ts +++ b/std/io/ioutil.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 type { BufReader } 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 9b17ce66d..ec94ccc5b 100644 --- a/std/io/ioutil_test.ts +++ b/std/io/ioutil_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 } from "../testing/asserts.ts"; import { copyN, diff --git a/std/io/mod.ts b/std/io/mod.ts index 2f4fbcc26..257d3be9e 100644 --- a/std/io/mod.ts +++ b/std/io/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. export * from "./bufio.ts"; export * from "./ioutil.ts"; export * from "./readers.ts"; diff --git a/std/io/readers.ts b/std/io/readers.ts index 58961b430..c3ee2ad14 100644 --- a/std/io/readers.ts +++ b/std/io/readers.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. // Based on https://github.com/golang/go/blob/0452f9460f50f0f0aba18df43dc2b31906fb66cc/src/io/io.go // Copyright 2009 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style diff --git a/std/io/readers_test.ts b/std/io/readers_test.ts index 53edb851c..e29a984b8 100644 --- a/std/io/readers_test.ts +++ b/std/io/readers_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 } from "../testing/asserts.ts"; import { LimitedReader, MultiReader, StringReader } from "./readers.ts"; import { StringWriter } from "./writers.ts"; diff --git a/std/io/streams.ts b/std/io/streams.ts index 2c4fbb6b9..8c726db43 100644 --- a/std/io/streams.ts +++ b/std/io/streams.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. /** Create a `Writer` from a `WritableStreamDefaultReader`. */ export function writerFromStreamWriter( diff --git a/std/io/streams_test.ts b/std/io/streams_test.ts index 68a4f6b45..5017b1f4f 100644 --- a/std/io/streams_test.ts +++ b/std/io/streams_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 { assert, assertEquals } from "../testing/asserts.ts"; import { diff --git a/std/io/test.ts b/std/io/test.ts index 57684a50e..590417055 100644 --- a/std/io/test.ts +++ b/std/io/test.ts @@ -1,2 +1,2 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. import "./mod.ts"; diff --git a/std/io/writers.ts b/std/io/writers.ts index d42f552e8..a9ce82180 100644 --- a/std/io/writers.ts +++ b/std/io/writers.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. type Writer = Deno.Writer; type WriterSync = Deno.WriterSync; import { decode, encode } from "../encoding/utf8.ts"; diff --git a/std/io/writers_test.ts b/std/io/writers_test.ts index 6dedf72a3..7135bfff3 100644 --- a/std/io/writers_test.ts +++ b/std/io/writers_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 } from "../testing/asserts.ts"; import { StringWriter } from "./writers.ts"; import { StringReader } from "./readers.ts"; |