diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-01-01 14:58:21 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-01 19:58:21 +0000 |
commit | 7e72f3af6152d4b62c2ea94d025dfa297a6b0cb4 (patch) | |
tree | 76753f501bbede065efca7a0b62b823d64a2d9de /ext/fs | |
parent | 8ba828b41e2609c91d993aec464035d62320fdad (diff) |
chore: update copyright to 2024 (#21753)
Diffstat (limited to 'ext/fs')
-rw-r--r-- | ext/fs/30_fs.js | 2 | ||||
-rw-r--r-- | ext/fs/Cargo.toml | 2 | ||||
-rw-r--r-- | ext/fs/interface.rs | 2 | ||||
-rw-r--r-- | ext/fs/lib.rs | 2 | ||||
-rw-r--r-- | ext/fs/ops.rs | 2 | ||||
-rw-r--r-- | ext/fs/std_fs.rs | 2 | ||||
-rw-r--r-- | ext/fs/sync.rs | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/ext/fs/30_fs.js b/ext/fs/30_fs.js index a43a5297c..442637303 100644 --- a/ext/fs/30_fs.js +++ b/ext/fs/30_fs.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. import { core, primordials } from "ext:core/mod.js"; const ops = core.ops; diff --git a/ext/fs/Cargo.toml b/ext/fs/Cargo.toml index d35d7440e..2261aa3bf 100644 --- a/ext/fs/Cargo.toml +++ b/ext/fs/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_fs" diff --git a/ext/fs/interface.rs b/ext/fs/interface.rs index ca027011f..e69e80c6b 100644 --- a/ext/fs/interface.rs +++ b/ext/fs/interface.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::path::Path; use std::path::PathBuf; diff --git a/ext/fs/lib.rs b/ext/fs/lib.rs index d36d8b5c2..5cfa6e5d9 100644 --- a/ext/fs/lib.rs +++ b/ext/fs/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. mod interface; mod ops; diff --git a/ext/fs/ops.rs b/ext/fs/ops.rs index 9fa8cf918..e41d3308f 100644 --- a/ext/fs/ops.rs +++ b/ext/fs/ops.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::cell::RefCell; diff --git a/ext/fs/std_fs.rs b/ext/fs/std_fs.rs index 9aa46613c..d8e2f3085 100644 --- a/ext/fs/std_fs.rs +++ b/ext/fs/std_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. #![allow(clippy::disallowed_methods)] diff --git a/ext/fs/sync.rs b/ext/fs/sync.rs index 091ea076c..83f1f8bc3 100644 --- a/ext/fs/sync.rs +++ b/ext/fs/sync.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. pub use inner::*; |