summaryrefslogtreecommitdiff
path: root/std/encoding/_yaml/schema
diff options
context:
space:
mode:
Diffstat (limited to 'std/encoding/_yaml/schema')
-rw-r--r--std/encoding/_yaml/schema/core.ts2
-rw-r--r--std/encoding/_yaml/schema/default.ts2
-rw-r--r--std/encoding/_yaml/schema/failsafe.ts2
-rw-r--r--std/encoding/_yaml/schema/json.ts2
-rw-r--r--std/encoding/_yaml/schema/mod.ts2
5 files changed, 5 insertions, 5 deletions
diff --git a/std/encoding/_yaml/schema/core.ts b/std/encoding/_yaml/schema/core.ts
index 4fadc9bfe..ad95f7330 100644
--- a/std/encoding/_yaml/schema/core.ts
+++ b/std/encoding/_yaml/schema/core.ts
@@ -1,7 +1,7 @@
// Ported from js-yaml v3.13.1:
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import { Schema } from "../schema.ts";
import { json } from "./json.ts";
diff --git a/std/encoding/_yaml/schema/default.ts b/std/encoding/_yaml/schema/default.ts
index 4c5ceeba7..60b6d18ad 100644
--- a/std/encoding/_yaml/schema/default.ts
+++ b/std/encoding/_yaml/schema/default.ts
@@ -1,7 +1,7 @@
// Ported from js-yaml v3.13.1:
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import { Schema } from "../schema.ts";
import { binary, merge, omap, pairs, set, timestamp } from "../type/mod.ts";
diff --git a/std/encoding/_yaml/schema/failsafe.ts b/std/encoding/_yaml/schema/failsafe.ts
index 74e1897be..c44e3c567 100644
--- a/std/encoding/_yaml/schema/failsafe.ts
+++ b/std/encoding/_yaml/schema/failsafe.ts
@@ -1,7 +1,7 @@
// Ported from js-yaml v3.13.1:
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import { Schema } from "../schema.ts";
import { map, seq, str } from "../type/mod.ts";
diff --git a/std/encoding/_yaml/schema/json.ts b/std/encoding/_yaml/schema/json.ts
index c30166fdf..0d7c2567f 100644
--- a/std/encoding/_yaml/schema/json.ts
+++ b/std/encoding/_yaml/schema/json.ts
@@ -1,7 +1,7 @@
// Ported from js-yaml v3.13.1:
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import { Schema } from "../schema.ts";
import { bool, float, int, nil } from "../type/mod.ts";
diff --git a/std/encoding/_yaml/schema/mod.ts b/std/encoding/_yaml/schema/mod.ts
index 7cbe0c283..a12075feb 100644
--- a/std/encoding/_yaml/schema/mod.ts
+++ b/std/encoding/_yaml/schema/mod.ts
@@ -1,7 +1,7 @@
// Ported from js-yaml v3.13.1:
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
export { core as CORE_SCHEMA } from "./core.ts";
export { def as DEFAULT_SCHEMA } from "./default.ts";