diff options
-rw-r--r-- | cli/js/custom_event.ts | 2 | ||||
-rw-r--r-- | cli/js/custom_event_test.ts | 2 | ||||
-rw-r--r-- | core/isolate.rs | 2 | ||||
-rw-r--r-- | core/libdeno/modules.cc | 2 | ||||
-rw-r--r-- | core/modules.rs | 2 | ||||
-rw-r--r-- | core/shared_queue.rs | 2 | ||||
-rwxr-xr-x | tools/format.py | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/cli/js/custom_event.ts b/cli/js/custom_event.ts index 922abd4b1..2d94df56d 100644 --- a/cli/js/custom_event.ts +++ b/cli/js/custom_event.ts @@ -1,4 +1,4 @@ -// Copyright 2018 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. import * as domTypes from "./dom_types.ts"; import * as event from "./event.ts"; import { getPrivateValue, requiredArguments } from "./util.ts"; diff --git a/cli/js/custom_event_test.ts b/cli/js/custom_event_test.ts index 4d2eb2c16..a5b649812 100644 --- a/cli/js/custom_event_test.ts +++ b/cli/js/custom_event_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. import { test, assertEquals } from "./test_util.ts"; test(function customEventInitializedWithDetail(): void { diff --git a/core/isolate.rs b/core/isolate.rs index d2822e2b9..9c4595eb0 100644 --- a/core/isolate.rs +++ b/core/isolate.rs @@ -1,4 +1,4 @@ -// Copyright 2018 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. // Do not add any dependency to modules.rs! // modules.rs is complex and should remain decoupled from isolate.rs to keep the diff --git a/core/libdeno/modules.cc b/core/libdeno/modules.cc index bb7dc5d98..9ccdbcadb 100644 --- a/core/libdeno/modules.cc +++ b/core/libdeno/modules.cc @@ -1,4 +1,4 @@ -// Copyright 2018 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. #include "exceptions.h" #include "internal.h" diff --git a/core/modules.rs b/core/modules.rs index bab701840..0248e338d 100644 --- a/core/modules.rs +++ b/core/modules.rs @@ -1,4 +1,4 @@ -// Copyright 2018 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. // Implementation note: one could imagine combining this module with Isolate to // provide a more intuitive high-level API. However, due to the complexity diff --git a/core/shared_queue.rs b/core/shared_queue.rs index dbb738f15..2bb0f69a5 100644 --- a/core/shared_queue.rs +++ b/core/shared_queue.rs @@ -1,4 +1,4 @@ -// Copyright 2018 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. /* SharedQueue Binary Layout +-------------------------------+-------------------------------+ diff --git a/tools/format.py b/tools/format.py index ac6035804..165e2ac71 100755 --- a/tools/format.py +++ b/tools/format.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright 2018 the Deno authors. All rights reserved. MIT license. +# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. import os import sys import argparse |