diff options
author | Kyle Gunger <kgunger12@gmail.com> | 2021-08-09 07:38:09 -0400 |
---|---|---|
committer | Kyle Gunger <kgunger12@gmail.com> | 2021-08-09 07:38:09 -0400 |
commit | 22e923c9b9519a309d51f6f1029bd542800dad4c (patch) | |
tree | 85c06409d7d79e3be466a4b3383bbf3aca3328cb /tnslc/src | |
parent | b125969d69fa9bf1b9b658449e36b93f5c1d0340 (diff) |
5, 6, much of 4
+ Finish much of ch 1
+ Fix spelling in copyright notices
Diffstat (limited to 'tnslc/src')
-rw-r--r-- | tnslc/src/ast/ast.tnsl | 2 | ||||
-rw-r--r-- | tnslc/src/ast/node.tnsl | 2 | ||||
-rw-r--r-- | tnslc/src/compile/arch/arch.tnsl | 2 | ||||
-rw-r--r-- | tnslc/src/compile/arch/common.tnsl | 2 | ||||
-rw-r--r-- | tnslc/src/compile/arch/isa_arm.tnsl | 2 | ||||
-rw-r--r-- | tnslc/src/compile/arch/isa_risc_v.tnsl | 2 | ||||
-rw-r--r-- | tnslc/src/compile/arch/isa_x86.tnsl | 2 | ||||
-rw-r--r-- | tnslc/src/compile/compile.tnsl | 2 | ||||
-rw-r--r-- | tnslc/src/flags/flags.tnsl | 2 | ||||
-rw-r--r-- | tnslc/src/parse/parse.tnsl | 2 | ||||
-rw-r--r-- | tnslc/src/parse/token.tnsl | 2 | ||||
-rw-r--r-- | tnslc/src/tnslc.tnsl | 2 |
12 files changed, 12 insertions, 12 deletions
diff --git a/tnslc/src/ast/ast.tnsl b/tnslc/src/ast/ast.tnsl index 33d1f93..405a94a 100644 --- a/tnslc/src/ast/ast.tnsl +++ b/tnslc/src/ast/ast.tnsl @@ -3,7 +3,7 @@ This file is licensed under the CDDL 1.0 (the License) and may only be used in accordance with the License. - You should have recieved a copy of the License with this + You should have received a copy of the License with this software/source code. If you did not, a copy can be found at the following URL: diff --git a/tnslc/src/ast/node.tnsl b/tnslc/src/ast/node.tnsl index 0e6e9d0..5eeac91 100644 --- a/tnslc/src/ast/node.tnsl +++ b/tnslc/src/ast/node.tnsl @@ -3,7 +3,7 @@ This file is licensed under the CDDL 1.0 (the License) and may only be used in accordance with the License. - You should have recieved a copy of the License with this + You should have received a copy of the License with this software/source code. If you did not, a copy can be found at the following URL: diff --git a/tnslc/src/compile/arch/arch.tnsl b/tnslc/src/compile/arch/arch.tnsl index 5fc7860..bcabbfa 100644 --- a/tnslc/src/compile/arch/arch.tnsl +++ b/tnslc/src/compile/arch/arch.tnsl @@ -3,7 +3,7 @@ This file is licensed under the CDDL 1.0 (the License) and may only be used in accordance with the License. - You should have recieved a copy of the License with this + You should have received a copy of the License with this software/source code. If you did not, a copy can be found at the following URL: diff --git a/tnslc/src/compile/arch/common.tnsl b/tnslc/src/compile/arch/common.tnsl index bb6edf1..cba0d9f 100644 --- a/tnslc/src/compile/arch/common.tnsl +++ b/tnslc/src/compile/arch/common.tnsl @@ -3,7 +3,7 @@ This file is licensed under the CDDL 1.0 (the License) and may only be used in accordance with the License. - You should have recieved a copy of the License with this + You should have received a copy of the License with this software/source code. If you did not, a copy can be found at the following URL: diff --git a/tnslc/src/compile/arch/isa_arm.tnsl b/tnslc/src/compile/arch/isa_arm.tnsl index 61d8996..0dc3468 100644 --- a/tnslc/src/compile/arch/isa_arm.tnsl +++ b/tnslc/src/compile/arch/isa_arm.tnsl @@ -3,7 +3,7 @@ This file is licensed under the CDDL 1.0 (the License) and may only be used in accordance with the License. - You should have recieved a copy of the License with this + You should have received a copy of the License with this software/source code. If you did not, a copy can be found at the following URL: diff --git a/tnslc/src/compile/arch/isa_risc_v.tnsl b/tnslc/src/compile/arch/isa_risc_v.tnsl index 61d8996..0dc3468 100644 --- a/tnslc/src/compile/arch/isa_risc_v.tnsl +++ b/tnslc/src/compile/arch/isa_risc_v.tnsl @@ -3,7 +3,7 @@ This file is licensed under the CDDL 1.0 (the License) and may only be used in accordance with the License. - You should have recieved a copy of the License with this + You should have received a copy of the License with this software/source code. If you did not, a copy can be found at the following URL: diff --git a/tnslc/src/compile/arch/isa_x86.tnsl b/tnslc/src/compile/arch/isa_x86.tnsl index 61d8996..0dc3468 100644 --- a/tnslc/src/compile/arch/isa_x86.tnsl +++ b/tnslc/src/compile/arch/isa_x86.tnsl @@ -3,7 +3,7 @@ This file is licensed under the CDDL 1.0 (the License) and may only be used in accordance with the License. - You should have recieved a copy of the License with this + You should have received a copy of the License with this software/source code. If you did not, a copy can be found at the following URL: diff --git a/tnslc/src/compile/compile.tnsl b/tnslc/src/compile/compile.tnsl index 5a58029..b3f4c5d 100644 --- a/tnslc/src/compile/compile.tnsl +++ b/tnslc/src/compile/compile.tnsl @@ -3,7 +3,7 @@ This file is licensed under the CDDL 1.0 (the License) and may only be used in accordance with the License. - You should have recieved a copy of the License with this + You should have received a copy of the License with this software/source code. If you did not, a copy can be found at the following URL: diff --git a/tnslc/src/flags/flags.tnsl b/tnslc/src/flags/flags.tnsl index 4feff0f..bc5d43f 100644 --- a/tnslc/src/flags/flags.tnsl +++ b/tnslc/src/flags/flags.tnsl @@ -3,7 +3,7 @@ This file is licensed under the CDDL 1.0 (the License) and may only be used in accordance with the License. - You should have recieved a copy of the License with this + You should have received a copy of the License with this software/source code. If you did not, a copy can be found at the following URL: diff --git a/tnslc/src/parse/parse.tnsl b/tnslc/src/parse/parse.tnsl index 3ca8d40..dc6b9a2 100644 --- a/tnslc/src/parse/parse.tnsl +++ b/tnslc/src/parse/parse.tnsl @@ -3,7 +3,7 @@ This file is licensed under the CDDL 1.0 (the License) and may only be used in accordance with the License. - You should have recieved a copy of the License with this + You should have received a copy of the License with this software/source code. If you did not, a copy can be found at the following URL: diff --git a/tnslc/src/parse/token.tnsl b/tnslc/src/parse/token.tnsl index f845daf..92b2ca4 100644 --- a/tnslc/src/parse/token.tnsl +++ b/tnslc/src/parse/token.tnsl @@ -3,7 +3,7 @@ This file is licensed under the CDDL 1.0 (the License) and may only be used in accordance with the License. - You should have recieved a copy of the License with this + You should have received a copy of the License with this software/source code. If you did not, a copy can be found at the following URL: diff --git a/tnslc/src/tnslc.tnsl b/tnslc/src/tnslc.tnsl index 627541f..617e9e7 100644 --- a/tnslc/src/tnslc.tnsl +++ b/tnslc/src/tnslc.tnsl @@ -3,7 +3,7 @@ This file is licensed under the CDDL 1.0 (the License) and may only be used in accordance with the License. - You should have recieved a copy of the License with this + You should have received a copy of the License with this software/source code. If you did not, a copy can be found at the following URL: |