From b97b9dc23cec0006fb59ac15197d666307ab8cf5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Mon, 15 Jan 2024 21:09:20 +0100 Subject: [PATCH] docs: update copyright year MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- LICENSE | 2 +- src/circular-array.ts | 2 +- src/deque.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/LICENSE b/LICENSE index 6e0988d8..01b78824 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2019-2023 Alessandro Pio Ardizio +Copyright (c) 2019-2024 Alessandro Pio Ardizio Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/src/circular-array.ts b/src/circular-array.ts index cc58d8ac..511b699c 100644 --- a/src/circular-array.ts +++ b/src/circular-array.ts @@ -1,4 +1,4 @@ -// Copyright Jerome Benoit. 2021-2023. All Rights Reserved. +// Copyright Jerome Benoit. 2021-2024. All Rights Reserved. export const DEFAULT_CIRCULAR_ARRAY_SIZE = 1024 diff --git a/src/deque.ts b/src/deque.ts index 027aa70d..25764372 100644 --- a/src/deque.ts +++ b/src/deque.ts @@ -1,4 +1,4 @@ -// Copyright Jerome Benoit. 2023. All Rights Reserved. +// Copyright Jerome Benoit. 2023-2024. All Rights Reserved. /** * Linked list node interface. -- 2.34.1