summaryrefslogtreecommitdiff
path: root/libtnsl
diff options
context:
space:
mode:
authorKyle Gunger <kgunger12@gmail.com>2021-08-09 07:38:09 -0400
committerKyle Gunger <kgunger12@gmail.com>2021-08-09 07:38:09 -0400
commit22e923c9b9519a309d51f6f1029bd542800dad4c (patch)
tree85c06409d7d79e3be466a4b3383bbf3aca3328cb /libtnsl
parentb125969d69fa9bf1b9b658449e36b93f5c1d0340 (diff)
5, 6, much of 4
+ Finish much of ch 1 + Fix spelling in copyright notices
Diffstat (limited to 'libtnsl')
-rw-r--r--libtnsl/README.md36
-rw-r--r--libtnsl/src/alg/alg.tnsl4
-rw-r--r--libtnsl/src/alg/math/math.tnsl4
-rw-r--r--libtnsl/src/bootstrap.tnsl2
-rw-r--r--libtnsl/src/box/box.tnsl4
-rw-r--r--libtnsl/src/box/iterator.tnsl4
-rw-r--r--libtnsl/src/box/map.tnsl4
-rw-r--r--libtnsl/src/box/string.tnsl4
-rw-r--r--libtnsl/src/box/tree.tnsl4
-rw-r--r--libtnsl/src/box/vector.tnsl4
-rw-r--r--libtnsl/src/io/block.tnsl4
-rw-r--r--libtnsl/src/io/file.tnsl4
-rw-r--r--libtnsl/src/io/io.tnsl4
-rw-r--r--libtnsl/src/io/std.tnsl4
-rw-r--r--libtnsl/src/io/stream.tnsl4
-rw-r--r--libtnsl/src/libtnsl.tnsl2
-rw-r--r--libtnsl/src/reflect/dynamic.tnsl4
-rw-r--r--libtnsl/src/reflect/method.tnsl4
-rw-r--r--libtnsl/src/reflect/reflect.tnsl4
-rw-r--r--libtnsl/src/reflect/resolver.tnsl4
-rw-r--r--libtnsl/src/reflect/static.tnsl4
-rw-r--r--libtnsl/src/reflect/type.tnsl4
-rw-r--r--libtnsl/src/time/alg.tnsl4
-rw-r--r--libtnsl/src/time/conv.tnsl4
-rw-r--r--libtnsl/src/time/parse.tnsl4
-rw-r--r--libtnsl/src/time/time.tnsl2
26 files changed, 65 insertions, 65 deletions
diff --git a/libtnsl/README.md b/libtnsl/README.md
index b8c8f1a..7fb8922 100644
--- a/libtnsl/README.md
+++ b/libtnsl/README.md
@@ -30,21 +30,21 @@ libtnsl provides the tnsl base module and the following sub-modules to address e
Each sub-module should have its own README to address features
---
- Copyright 2021 Kyle Gunger
-
- Dual licenced under the CDDL 1.0 and BSD 3-Clause licences.
-
- This file may only be used in accordance with one of the two
- licences. You should have recieved a copy of each licence with
- the source code. In the event that you did not recieve a copy
- of the licences, they may be found at the following URLs:
-
- CDDL 1.0:
- https://opensource.org/licenses/CDDL-1.0
-
- BSD 3-Clause:
- https://opensource.org/licenses/BSD-3-Clause
-
- THIS SOFTWARE/SOURCE CODE IS PROVIDED "AS IS" WITH NO
- WARRENTY, GUARANTEE, OR CLAIM OF FITNESS FOR ANY PURPOSE
- EXPRESS OR IMPLIED
+ Copyright 2021 Kyle Gunger
+
+ Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
+
+ This file may only be used in accordance with one of the two
+ licenses. You should have received a copy of each license with
+ the source code. In the event that you did not recieve a copy
+ of the licenses, they may be found at the following URLs:
+
+ CDDL 1.0:
+ https://opensource.org/licenses/CDDL-1.0
+
+ BSD 3-Clause:
+ https://opensource.org/licenses/BSD-3-Clause
+
+ THIS SOFTWARE/SOURCE CODE IS PROVIDED "AS IS" WITH NO
+ WARRANTY, GUARANTEE, OR CLAIM OF FITNESS FOR ANY PURPOSE
+ EXPRESS OR IMPLIED
diff --git a/libtnsl/src/alg/alg.tnsl b/libtnsl/src/alg/alg.tnsl
index 8029197..d346464 100644
--- a/libtnsl/src/alg/alg.tnsl
+++ b/libtnsl/src/alg/alg.tnsl
@@ -1,10 +1,10 @@
-/#
+/##
Copyright 2021 Kyle Gunger
Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
This file may only be used in accordance with one of the two
- licenses. You should have recieved a copy of each license with
+ licenses. You should have received a copy of each license with
the source code. In the event that you did not recieve a copy
of the licenses, they may be found at the following URLs:
diff --git a/libtnsl/src/alg/math/math.tnsl b/libtnsl/src/alg/math/math.tnsl
index 8029197..d346464 100644
--- a/libtnsl/src/alg/math/math.tnsl
+++ b/libtnsl/src/alg/math/math.tnsl
@@ -1,10 +1,10 @@
-/#
+/##
Copyright 2021 Kyle Gunger
Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
This file may only be used in accordance with one of the two
- licenses. You should have recieved a copy of each license with
+ licenses. You should have received a copy of each license with
the source code. In the event that you did not recieve a copy
of the licenses, they may be found at the following URLs:
diff --git a/libtnsl/src/bootstrap.tnsl b/libtnsl/src/bootstrap.tnsl
index 5f407fa..aa36956 100644
--- a/libtnsl/src/bootstrap.tnsl
+++ b/libtnsl/src/bootstrap.tnsl
@@ -4,7 +4,7 @@
Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
This file may only be used in accordance with one of the two
- licenses. You should have recieved a copy of each license with
+ licenses. You should have received a copy of each license with
the source code. In the event that you did not recieve a copy
of the licenses, they may be found at the following URLs:
diff --git a/libtnsl/src/box/box.tnsl b/libtnsl/src/box/box.tnsl
index 6048d85..2f270b6 100644
--- a/libtnsl/src/box/box.tnsl
+++ b/libtnsl/src/box/box.tnsl
@@ -1,10 +1,10 @@
-/#
+/##
Copyright 2021 Kyle Gunger
Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
This file may only be used in accordance with one of the two
- licenses. You should have recieved a copy of each license with
+ licenses. You should have received a copy of each license with
the source code. In the event that you did not recieve a copy
of the licenses, they may be found at the following URLs:
diff --git a/libtnsl/src/box/iterator.tnsl b/libtnsl/src/box/iterator.tnsl
index 9c59bd2..13b9ef9 100644
--- a/libtnsl/src/box/iterator.tnsl
+++ b/libtnsl/src/box/iterator.tnsl
@@ -1,10 +1,10 @@
-/#
+/##
Copyright 2021 Kyle Gunger
Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
This file may only be used in accordance with one of the two
- licenses. You should have recieved a copy of each license with
+ licenses. You should have received a copy of each license with
the source code. In the event that you did not recieve a copy
of the licenses, they may be found at the following URLs:
diff --git a/libtnsl/src/box/map.tnsl b/libtnsl/src/box/map.tnsl
index 8029197..d346464 100644
--- a/libtnsl/src/box/map.tnsl
+++ b/libtnsl/src/box/map.tnsl
@@ -1,10 +1,10 @@
-/#
+/##
Copyright 2021 Kyle Gunger
Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
This file may only be used in accordance with one of the two
- licenses. You should have recieved a copy of each license with
+ licenses. You should have received a copy of each license with
the source code. In the event that you did not recieve a copy
of the licenses, they may be found at the following URLs:
diff --git a/libtnsl/src/box/string.tnsl b/libtnsl/src/box/string.tnsl
index 8029197..d346464 100644
--- a/libtnsl/src/box/string.tnsl
+++ b/libtnsl/src/box/string.tnsl
@@ -1,10 +1,10 @@
-/#
+/##
Copyright 2021 Kyle Gunger
Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
This file may only be used in accordance with one of the two
- licenses. You should have recieved a copy of each license with
+ licenses. You should have received a copy of each license with
the source code. In the event that you did not recieve a copy
of the licenses, they may be found at the following URLs:
diff --git a/libtnsl/src/box/tree.tnsl b/libtnsl/src/box/tree.tnsl
index 8029197..d346464 100644
--- a/libtnsl/src/box/tree.tnsl
+++ b/libtnsl/src/box/tree.tnsl
@@ -1,10 +1,10 @@
-/#
+/##
Copyright 2021 Kyle Gunger
Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
This file may only be used in accordance with one of the two
- licenses. You should have recieved a copy of each license with
+ licenses. You should have received a copy of each license with
the source code. In the event that you did not recieve a copy
of the licenses, they may be found at the following URLs:
diff --git a/libtnsl/src/box/vector.tnsl b/libtnsl/src/box/vector.tnsl
index 8029197..d346464 100644
--- a/libtnsl/src/box/vector.tnsl
+++ b/libtnsl/src/box/vector.tnsl
@@ -1,10 +1,10 @@
-/#
+/##
Copyright 2021 Kyle Gunger
Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
This file may only be used in accordance with one of the two
- licenses. You should have recieved a copy of each license with
+ licenses. You should have received a copy of each license with
the source code. In the event that you did not recieve a copy
of the licenses, they may be found at the following URLs:
diff --git a/libtnsl/src/io/block.tnsl b/libtnsl/src/io/block.tnsl
index 8029197..d346464 100644
--- a/libtnsl/src/io/block.tnsl
+++ b/libtnsl/src/io/block.tnsl
@@ -1,10 +1,10 @@
-/#
+/##
Copyright 2021 Kyle Gunger
Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
This file may only be used in accordance with one of the two
- licenses. You should have recieved a copy of each license with
+ licenses. You should have received a copy of each license with
the source code. In the event that you did not recieve a copy
of the licenses, they may be found at the following URLs:
diff --git a/libtnsl/src/io/file.tnsl b/libtnsl/src/io/file.tnsl
index 8029197..d346464 100644
--- a/libtnsl/src/io/file.tnsl
+++ b/libtnsl/src/io/file.tnsl
@@ -1,10 +1,10 @@
-/#
+/##
Copyright 2021 Kyle Gunger
Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
This file may only be used in accordance with one of the two
- licenses. You should have recieved a copy of each license with
+ licenses. You should have received a copy of each license with
the source code. In the event that you did not recieve a copy
of the licenses, they may be found at the following URLs:
diff --git a/libtnsl/src/io/io.tnsl b/libtnsl/src/io/io.tnsl
index 5c6d217..68e2fc0 100644
--- a/libtnsl/src/io/io.tnsl
+++ b/libtnsl/src/io/io.tnsl
@@ -1,10 +1,10 @@
-/#
+/##
Copyright 2021 Kyle Gunger
Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
This file may only be used in accordance with one of the two
- licenses. You should have recieved a copy of each license with
+ licenses. You should have received a copy of each license with
the source code. In the event that you did not recieve a copy
of the licenses, they may be found at the following URLs:
diff --git a/libtnsl/src/io/std.tnsl b/libtnsl/src/io/std.tnsl
index 8029197..d346464 100644
--- a/libtnsl/src/io/std.tnsl
+++ b/libtnsl/src/io/std.tnsl
@@ -1,10 +1,10 @@
-/#
+/##
Copyright 2021 Kyle Gunger
Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
This file may only be used in accordance with one of the two
- licenses. You should have recieved a copy of each license with
+ licenses. You should have received a copy of each license with
the source code. In the event that you did not recieve a copy
of the licenses, they may be found at the following URLs:
diff --git a/libtnsl/src/io/stream.tnsl b/libtnsl/src/io/stream.tnsl
index 8029197..d346464 100644
--- a/libtnsl/src/io/stream.tnsl
+++ b/libtnsl/src/io/stream.tnsl
@@ -1,10 +1,10 @@
-/#
+/##
Copyright 2021 Kyle Gunger
Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
This file may only be used in accordance with one of the two
- licenses. You should have recieved a copy of each license with
+ licenses. You should have received a copy of each license with
the source code. In the event that you did not recieve a copy
of the licenses, they may be found at the following URLs:
diff --git a/libtnsl/src/libtnsl.tnsl b/libtnsl/src/libtnsl.tnsl
index 98a2e7c..266c1fa 100644
--- a/libtnsl/src/libtnsl.tnsl
+++ b/libtnsl/src/libtnsl.tnsl
@@ -4,7 +4,7 @@
Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
This file may only be used in accordance with one of the two
- licenses. You should have recieved a copy of each license with
+ licenses. You should have received a copy of each license with
the source code. In the event that you did not recieve a copy
of the licenses, they may be found at the following URLs:
diff --git a/libtnsl/src/reflect/dynamic.tnsl b/libtnsl/src/reflect/dynamic.tnsl
index 8029197..d346464 100644
--- a/libtnsl/src/reflect/dynamic.tnsl
+++ b/libtnsl/src/reflect/dynamic.tnsl
@@ -1,10 +1,10 @@
-/#
+/##
Copyright 2021 Kyle Gunger
Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
This file may only be used in accordance with one of the two
- licenses. You should have recieved a copy of each license with
+ licenses. You should have received a copy of each license with
the source code. In the event that you did not recieve a copy
of the licenses, they may be found at the following URLs:
diff --git a/libtnsl/src/reflect/method.tnsl b/libtnsl/src/reflect/method.tnsl
index 8029197..d346464 100644
--- a/libtnsl/src/reflect/method.tnsl
+++ b/libtnsl/src/reflect/method.tnsl
@@ -1,10 +1,10 @@
-/#
+/##
Copyright 2021 Kyle Gunger
Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
This file may only be used in accordance with one of the two
- licenses. You should have recieved a copy of each license with
+ licenses. You should have received a copy of each license with
the source code. In the event that you did not recieve a copy
of the licenses, they may be found at the following URLs:
diff --git a/libtnsl/src/reflect/reflect.tnsl b/libtnsl/src/reflect/reflect.tnsl
index 3308eda..3c1d583 100644
--- a/libtnsl/src/reflect/reflect.tnsl
+++ b/libtnsl/src/reflect/reflect.tnsl
@@ -1,10 +1,10 @@
-/#
+/##
Copyright 2021 Kyle Gunger
Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
This file may only be used in accordance with one of the two
- licenses. You should have recieved a copy of each license with
+ licenses. You should have received a copy of each license with
the source code. In the event that you did not recieve a copy
of the licenses, they may be found at the following URLs:
diff --git a/libtnsl/src/reflect/resolver.tnsl b/libtnsl/src/reflect/resolver.tnsl
index 8029197..d346464 100644
--- a/libtnsl/src/reflect/resolver.tnsl
+++ b/libtnsl/src/reflect/resolver.tnsl
@@ -1,10 +1,10 @@
-/#
+/##
Copyright 2021 Kyle Gunger
Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
This file may only be used in accordance with one of the two
- licenses. You should have recieved a copy of each license with
+ licenses. You should have received a copy of each license with
the source code. In the event that you did not recieve a copy
of the licenses, they may be found at the following URLs:
diff --git a/libtnsl/src/reflect/static.tnsl b/libtnsl/src/reflect/static.tnsl
index 8029197..d346464 100644
--- a/libtnsl/src/reflect/static.tnsl
+++ b/libtnsl/src/reflect/static.tnsl
@@ -1,10 +1,10 @@
-/#
+/##
Copyright 2021 Kyle Gunger
Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
This file may only be used in accordance with one of the two
- licenses. You should have recieved a copy of each license with
+ licenses. You should have received a copy of each license with
the source code. In the event that you did not recieve a copy
of the licenses, they may be found at the following URLs:
diff --git a/libtnsl/src/reflect/type.tnsl b/libtnsl/src/reflect/type.tnsl
index 8029197..d346464 100644
--- a/libtnsl/src/reflect/type.tnsl
+++ b/libtnsl/src/reflect/type.tnsl
@@ -1,10 +1,10 @@
-/#
+/##
Copyright 2021 Kyle Gunger
Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
This file may only be used in accordance with one of the two
- licenses. You should have recieved a copy of each license with
+ licenses. You should have received a copy of each license with
the source code. In the event that you did not recieve a copy
of the licenses, they may be found at the following URLs:
diff --git a/libtnsl/src/time/alg.tnsl b/libtnsl/src/time/alg.tnsl
index 8029197..d346464 100644
--- a/libtnsl/src/time/alg.tnsl
+++ b/libtnsl/src/time/alg.tnsl
@@ -1,10 +1,10 @@
-/#
+/##
Copyright 2021 Kyle Gunger
Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
This file may only be used in accordance with one of the two
- licenses. You should have recieved a copy of each license with
+ licenses. You should have received a copy of each license with
the source code. In the event that you did not recieve a copy
of the licenses, they may be found at the following URLs:
diff --git a/libtnsl/src/time/conv.tnsl b/libtnsl/src/time/conv.tnsl
index 8029197..d346464 100644
--- a/libtnsl/src/time/conv.tnsl
+++ b/libtnsl/src/time/conv.tnsl
@@ -1,10 +1,10 @@
-/#
+/##
Copyright 2021 Kyle Gunger
Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
This file may only be used in accordance with one of the two
- licenses. You should have recieved a copy of each license with
+ licenses. You should have received a copy of each license with
the source code. In the event that you did not recieve a copy
of the licenses, they may be found at the following URLs:
diff --git a/libtnsl/src/time/parse.tnsl b/libtnsl/src/time/parse.tnsl
index 8029197..d346464 100644
--- a/libtnsl/src/time/parse.tnsl
+++ b/libtnsl/src/time/parse.tnsl
@@ -1,10 +1,10 @@
-/#
+/##
Copyright 2021 Kyle Gunger
Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
This file may only be used in accordance with one of the two
- licenses. You should have recieved a copy of each license with
+ licenses. You should have received a copy of each license with
the source code. In the event that you did not recieve a copy
of the licenses, they may be found at the following URLs:
diff --git a/libtnsl/src/time/time.tnsl b/libtnsl/src/time/time.tnsl
index b993f45..dc24369 100644
--- a/libtnsl/src/time/time.tnsl
+++ b/libtnsl/src/time/time.tnsl
@@ -4,7 +4,7 @@
Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
This file may only be used in accordance with one of the two
- licenses. You should have recieved a copy of each license with
+ licenses. You should have received a copy of each license with
the source code. In the event that you did not recieve a copy
of the licenses, they may be found at the following URLs: