diff options
Diffstat (limited to 'std/fmt')
-rw-r--r-- | std/fmt/colors.ts | 2 | ||||
-rw-r--r-- | std/fmt/colors_test.ts | 2 | ||||
-rw-r--r-- | std/fmt/printf.ts | 2 | ||||
-rw-r--r-- | std/fmt/printf_test.ts | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/std/fmt/colors.ts b/std/fmt/colors.ts index a2787a198..3596638f5 100644 --- a/std/fmt/colors.ts +++ b/std/fmt/colors.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. // A module to print ANSI terminal colors. Inspired by chalk, kleur, and colors // on npm. // diff --git a/std/fmt/colors_test.ts b/std/fmt/colors_test.ts index a43bd82fe..7f5940a4d 100644 --- a/std/fmt/colors_test.ts +++ b/std/fmt/colors_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 c from "./colors.ts"; import "../examples/colors.ts"; diff --git a/std/fmt/printf.ts b/std/fmt/printf.ts index 27d4acca9..4f8a83933 100644 --- a/std/fmt/printf.ts +++ b/std/fmt/printf.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 implementation is inspired by POSIX and Golang but does not port * implementation code. */ diff --git a/std/fmt/printf_test.ts b/std/fmt/printf_test.ts index 3987d0b73..6b6e25a37 100644 --- a/std/fmt/printf_test.ts +++ b/std/fmt/printf_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. // // A number of test-cases based on: // |