diff options
Diffstat (limited to 'ext/io')
-rw-r--r-- | ext/io/12_io.js | 2 | ||||
-rw-r--r-- | ext/io/Cargo.toml | 2 | ||||
-rw-r--r-- | ext/io/fs.rs | 2 | ||||
-rw-r--r-- | ext/io/lib.rs | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/ext/io/12_io.js b/ext/io/12_io.js index c38ee12b0..0621e6479 100644 --- a/ext/io/12_io.js +++ b/ext/io/12_io.js @@ -1,4 +1,4 @@ -// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. // Interfaces 100% copied from Go. // Documentation liberally lifted from them too. diff --git a/ext/io/Cargo.toml b/ext/io/Cargo.toml index 2b64250a3..60d8091c2 100644 --- a/ext/io/Cargo.toml +++ b/ext/io/Cargo.toml @@ -1,4 +1,4 @@ -# Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. +# Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. [package] name = "deno_io" diff --git a/ext/io/fs.rs b/ext/io/fs.rs index 3c98bf861..d8f393556 100644 --- a/ext/io/fs.rs +++ b/ext/io/fs.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. use std::borrow::Cow; use std::io; diff --git a/ext/io/lib.rs b/ext/io/lib.rs index 038176b23..c85696f64 100644 --- a/ext/io/lib.rs +++ b/ext/io/lib.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. use deno_core::error::AnyError; use deno_core::op2; |