diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2021-01-10 21:59:07 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-10 21:59:07 -0500 |
commit | 2b75a1155906613df16bad9d1eb84f3dc0ba571b (patch) | |
tree | fb6fdea18d774994d902b27c9bc841d2169a0420 /std/flags | |
parent | b0821fe9ce017ea1fdec191622f27c31af9c4f0f (diff) |
update copyright to 2021 (#9081)
Diffstat (limited to 'std/flags')
-rwxr-xr-x | std/flags/all_bool_test.ts | 2 | ||||
-rwxr-xr-x | std/flags/bool_test.ts | 2 | ||||
-rwxr-xr-x | std/flags/dash_test.ts | 2 | ||||
-rwxr-xr-x | std/flags/default_bool_test.ts | 2 | ||||
-rwxr-xr-x | std/flags/dotted_test.ts | 2 | ||||
-rwxr-xr-x | std/flags/kv_short_test.ts | 2 | ||||
-rwxr-xr-x | std/flags/long_test.ts | 2 | ||||
-rw-r--r-- | std/flags/mod.ts | 2 | ||||
-rwxr-xr-x | std/flags/num_test.ts | 2 | ||||
-rwxr-xr-x | std/flags/parse_test.ts | 2 | ||||
-rwxr-xr-x | std/flags/short_test.ts | 2 | ||||
-rwxr-xr-x | std/flags/stop_early_test.ts | 2 | ||||
-rw-r--r-- | std/flags/test.ts | 2 | ||||
-rwxr-xr-x | std/flags/unknown_test.ts | 2 | ||||
-rwxr-xr-x | std/flags/whitespace_test.ts | 2 |
15 files changed, 15 insertions, 15 deletions
diff --git a/std/flags/all_bool_test.ts b/std/flags/all_bool_test.ts index 465635096..3da80cb37 100755 --- a/std/flags/all_bool_test.ts +++ b/std/flags/all_bool_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 { parse } from "./mod.ts"; diff --git a/std/flags/bool_test.ts b/std/flags/bool_test.ts index a99be7366..bafa21adf 100755 --- a/std/flags/bool_test.ts +++ b/std/flags/bool_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 { parse } from "./mod.ts"; diff --git a/std/flags/dash_test.ts b/std/flags/dash_test.ts index 7a4f7dd1e..959956d99 100755 --- a/std/flags/dash_test.ts +++ b/std/flags/dash_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 { parse } from "./mod.ts"; diff --git a/std/flags/default_bool_test.ts b/std/flags/default_bool_test.ts index e433a965d..625bed3bf 100755 --- a/std/flags/default_bool_test.ts +++ b/std/flags/default_bool_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 { parse } from "./mod.ts"; diff --git a/std/flags/dotted_test.ts b/std/flags/dotted_test.ts index 73013228c..aed394198 100755 --- a/std/flags/dotted_test.ts +++ b/std/flags/dotted_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 { parse } from "./mod.ts"; diff --git a/std/flags/kv_short_test.ts b/std/flags/kv_short_test.ts index dca05fb87..453d8a956 100755 --- a/std/flags/kv_short_test.ts +++ b/std/flags/kv_short_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 { parse } from "./mod.ts"; diff --git a/std/flags/long_test.ts b/std/flags/long_test.ts index 1c8ccca51..b10d101f6 100755 --- a/std/flags/long_test.ts +++ b/std/flags/long_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 { parse } from "./mod.ts"; diff --git a/std/flags/mod.ts b/std/flags/mod.ts index 94734fdab..7c066f900 100644 --- a/std/flags/mod.ts +++ b/std/flags/mod.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 } from "../_util/assert.ts"; diff --git a/std/flags/num_test.ts b/std/flags/num_test.ts index a457ba959..b57aed409 100755 --- a/std/flags/num_test.ts +++ b/std/flags/num_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 { parse } from "./mod.ts"; diff --git a/std/flags/parse_test.ts b/std/flags/parse_test.ts index 3e981a43a..5b36d0857 100755 --- a/std/flags/parse_test.ts +++ b/std/flags/parse_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 { parse } from "./mod.ts"; diff --git a/std/flags/short_test.ts b/std/flags/short_test.ts index d152a3736..9f7936f98 100755 --- a/std/flags/short_test.ts +++ b/std/flags/short_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 { parse } from "./mod.ts"; diff --git a/std/flags/stop_early_test.ts b/std/flags/stop_early_test.ts index 219ef8042..f7e23881a 100755 --- a/std/flags/stop_early_test.ts +++ b/std/flags/stop_early_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 { parse } from "./mod.ts"; diff --git a/std/flags/test.ts b/std/flags/test.ts index 57684a50e..590417055 100644 --- a/std/flags/test.ts +++ b/std/flags/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/flags/unknown_test.ts b/std/flags/unknown_test.ts index d17fb8111..4f79215b6 100755 --- a/std/flags/unknown_test.ts +++ b/std/flags/unknown_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 { parse } from "./mod.ts"; diff --git a/std/flags/whitespace_test.ts b/std/flags/whitespace_test.ts index ff7e2c5aa..bb9aab1f4 100755 --- a/std/flags/whitespace_test.ts +++ b/std/flags/whitespace_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 { parse } from "./mod.ts"; |