summaryrefslogtreecommitdiff
path: root/cli/args
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2023-01-02 16:00:42 -0500
committerGitHub <noreply@github.com>2023-01-02 21:00:42 +0000
commit10e4b2e14046b74469f7310c599579a6611513fe (patch)
treef6e446cb97d1df8b7413f3bf3a9c897ff487b275 /cli/args
parentf729576b2db2aa6ce000a598ad2e45533f686213 (diff)
chore: update copyright year to 2023 (#17247)
Yearly tradition of creating extra noise in git.
Diffstat (limited to 'cli/args')
-rw-r--r--cli/args/config_file.rs2
-rw-r--r--cli/args/flags.rs2
-rw-r--r--cli/args/flags_allow_net.rs2
-rw-r--r--cli/args/lockfile.rs2
-rw-r--r--cli/args/mod.rs2
5 files changed, 5 insertions, 5 deletions
diff --git a/cli/args/config_file.rs b/cli/args/config_file.rs
index 79e1c5367..0a708eeee 100644
--- a/cli/args/config_file.rs
+++ b/cli/args/config_file.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use crate::args::ConfigFlag;
use crate::args::Flags;
diff --git a/cli/args/flags.rs b/cli/args/flags.rs
index 7c3eae778..f3ba85e45 100644
--- a/cli/args/flags.rs
+++ b/cli/args/flags.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use clap::Arg;
use clap::ArgMatches;
diff --git a/cli/args/flags_allow_net.rs b/cli/args/flags_allow_net.rs
index 613ce04fe..38a4ac83a 100644
--- a/cli/args/flags_allow_net.rs
+++ b/cli/args/flags_allow_net.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use deno_core::url::Url;
use std::net::IpAddr;
diff --git a/cli/args/lockfile.rs b/cli/args/lockfile.rs
index 1b5eddf3a..3c150a089 100644
--- a/cli/args/lockfile.rs
+++ b/cli/args/lockfile.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use deno_core::anyhow::Context;
use deno_core::error::AnyError;
diff --git a/cli/args/mod.rs b/cli/args/mod.rs
index 09690412d..97b70698d 100644
--- a/cli/args/mod.rs
+++ b/cli/args/mod.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
mod config_file;
mod flags;