summaryrefslogtreecommitdiff
path: root/std/hash/_fnv
diff options
context:
space:
mode:
Diffstat (limited to 'std/hash/_fnv')
-rw-r--r--std/hash/_fnv/fnv32.ts2
-rw-r--r--std/hash/_fnv/fnv64.ts2
-rw-r--r--std/hash/_fnv/util.ts2
-rw-r--r--std/hash/_fnv/util_test.ts2
4 files changed, 4 insertions, 4 deletions
diff --git a/std/hash/_fnv/fnv32.ts b/std/hash/_fnv/fnv32.ts
index 9547e1199..679d44a62 100644
--- a/std/hash/_fnv/fnv32.ts
+++ b/std/hash/_fnv/fnv32.ts
@@ -2,7 +2,7 @@
// https://github.com/golang/go/tree/go1.13.10/src/hash/fnv/fnv.go
// Copyright 2011 The Go Authors. All rights reserved. BSD license.
// https://github.com/golang/go/blob/master/LICENSE
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import { mul32 } from "./util.ts";
diff --git a/std/hash/_fnv/fnv64.ts b/std/hash/_fnv/fnv64.ts
index 8a5b5187d..882636d0e 100644
--- a/std/hash/_fnv/fnv64.ts
+++ b/std/hash/_fnv/fnv64.ts
@@ -2,7 +2,7 @@
// https://github.com/golang/go/tree/go1.13.10/src/hash/fnv/fnv.go
// Copyright 2011 The Go Authors. All rights reserved. BSD license.
// https://github.com/golang/go/blob/master/LICENSE
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import { mul64 } from "./util.ts";
diff --git a/std/hash/_fnv/util.ts b/std/hash/_fnv/util.ts
index 096b70815..8afed8e82 100644
--- a/std/hash/_fnv/util.ts
+++ b/std/hash/_fnv/util.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.
function n16(n: number): number {
return n & 0xffff;
diff --git a/std/hash/_fnv/util_test.ts b/std/hash/_fnv/util_test.ts
index 5e31a98bd..fb9dd3208 100644
--- a/std/hash/_fnv/util_test.ts
+++ b/std/hash/_fnv/util_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 { mul32, mul64 } from "./util.ts";