From 54ab50a5177626bc7449b5ddb47114b3c2657aa8 Mon Sep 17 00:00:00 2001 From: Winni Neessen Date: Mon, 25 Mar 2024 11:09:29 +0100 Subject: [PATCH] Add SPDX headers to grouping files The change includes adding SPDX headings to both 'grouping.go' and 'grouping_test.go' files. These headings not only display the copyright text but also provide the necessary license information, ensuring an understanding of the legal usage of these source code files. --- grouping.go | 4 ++++ grouping_test.go | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/grouping.go b/grouping.go index 98399b9..6338a74 100644 --- a/grouping.go +++ b/grouping.go @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021-2024 Winni Neessen +// +// SPDX-License-Identifier: MIT + package apg import "unicode" diff --git a/grouping_test.go b/grouping_test.go index 972cb52..e995b68 100644 --- a/grouping_test.go +++ b/grouping_test.go @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2021-2024 Winni Neessen +// +// SPDX-License-Identifier: MIT + package apg import "testing"