summaryrefslogtreecommitdiff
path: root/std/path
diff options
context:
space:
mode:
Diffstat (limited to 'std/path')
-rw-r--r--std/path/_interface.ts2
-rw-r--r--std/path/common.ts2
-rw-r--r--std/path/common_test.ts2
-rw-r--r--std/path/from_file_url_test.ts2
-rw-r--r--std/path/glob.ts2
-rw-r--r--std/path/glob_test.ts2
-rw-r--r--std/path/join_test.ts2
-rw-r--r--std/path/separator.ts2
-rw-r--r--std/path/test.ts2
-rw-r--r--std/path/to_file_url_test.ts2
10 files changed, 10 insertions, 10 deletions
diff --git a/std/path/_interface.ts b/std/path/_interface.ts
index 39044eaf1..d5015cbeb 100644
--- a/std/path/_interface.ts
+++ b/std/path/_interface.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.
// This module is browser compatible.
/**
diff --git a/std/path/common.ts b/std/path/common.ts
index 1d8df96ad..390c04f1d 100644
--- a/std/path/common.ts
+++ b/std/path/common.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.
// This module is browser compatible.
import { SEP } from "./separator.ts";
diff --git a/std/path/common_test.ts b/std/path/common_test.ts
index 7b7bd2ba3..b34b54741 100644
--- a/std/path/common_test.ts
+++ b/std/path/common_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 { common } from "./mod.ts";
diff --git a/std/path/from_file_url_test.ts b/std/path/from_file_url_test.ts
index e69310a37..61a45a89b 100644
--- a/std/path/from_file_url_test.ts
+++ b/std/path/from_file_url_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 { posix, win32 } from "./mod.ts";
import { assertEquals, assertThrows } from "../testing/asserts.ts";
diff --git a/std/path/glob.ts b/std/path/glob.ts
index a9cd70143..d599c1b88 100644
--- a/std/path/glob.ts
+++ b/std/path/glob.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.
// This module is browser compatible.
import { osType } from "../_util/os.ts";
diff --git a/std/path/glob_test.ts b/std/path/glob_test.ts
index 82d3f0af5..cf46a3c5c 100644
--- a/std/path/glob_test.ts
+++ b/std/path/glob_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 {
globToRegExp,
diff --git a/std/path/join_test.ts b/std/path/join_test.ts
index 032b88ad9..122376be1 100644
--- a/std/path/join_test.ts
+++ b/std/path/join_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 * as path from "./mod.ts";
diff --git a/std/path/separator.ts b/std/path/separator.ts
index 58b42000a..d897e07e6 100644
--- a/std/path/separator.ts
+++ b/std/path/separator.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.
// This module is browser compatible.
import { isWindows } from "../_util/os.ts";
diff --git a/std/path/test.ts b/std/path/test.ts
index 57684a50e..590417055 100644
--- a/std/path/test.ts
+++ b/std/path/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/path/to_file_url_test.ts b/std/path/to_file_url_test.ts
index 6d0ca8d80..c4ee1a236 100644
--- a/std/path/to_file_url_test.ts
+++ b/std/path/to_file_url_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 { posix, win32 } from "./mod.ts";
import { assertEquals, assertThrows } from "../testing/asserts.ts";