summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2023-01-31 19:02:21 -0700
committerLuke Shumaker <lukeshu@lukeshu.com>2023-01-31 19:02:39 -0700
commitcc00c03b70521bb7ea6c0fb8acb4810eb2cc0d21 (patch)
treef5007c94a7b1a9692dc73e88975bbc5633f8f672
parent5d5ac549dc1a25963418fda4b20ed181b7afd8d2 (diff)
LICENSE.txt: s/program/library/, fuss with a sentence
It's a library, not a program. Apparently the pkg.go.dev license detector recognizes "You should have received a copy of the GNU General Public License along with this (program|library)" but not "Along with this (program|library), you should have received a copy of the GNU General Public License."
-rw-r--r--LICENSE.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/LICENSE.txt b/LICENSE.txt
index 55535ad..1a2eecf 100644
--- a/LICENSE.txt
+++ b/LICENSE.txt
@@ -2,21 +2,21 @@ lowmemjson - A streaming json library with minimal memory footprint
Copyright (C) 2022-2023 Luke Shumaker <lukeshu@lukeshu.com>
Copyright (C) 2010-2021 The Go Authors
-This program is free software; you can redistribute it and/or modify
+This library is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or (at
your option) any later version.
-This program is distributed in the hope that it will be useful, but
+This library is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
-Along with this program, you should have received a copy of the GNU
-General Public License (in the "LICENSE.gpl-2.0.txt" file). If not,
+You should have received a copy of the GNU General Public License
+along with this library (in the "LICENSE.gpl-2.0.txt" file). If not,
see <https://www.gnu.org/licenses/>.
-Parts of the program (the files starting with "borrowed_") are adapted
+Parts of the library (the files starting with "borrowed_") are adapted
from the Go standard library, and are subject to the terms of the
3-clause BSD license later in this file.