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/hash/_fnv | |
parent | b0821fe9ce017ea1fdec191622f27c31af9c4f0f (diff) |
update copyright to 2021 (#9081)
Diffstat (limited to 'std/hash/_fnv')
-rw-r--r-- | std/hash/_fnv/fnv32.ts | 2 | ||||
-rw-r--r-- | std/hash/_fnv/fnv64.ts | 2 | ||||
-rw-r--r-- | std/hash/_fnv/util.ts | 2 | ||||
-rw-r--r-- | std/hash/_fnv/util_test.ts | 2 |
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"; |