From 42acae3a42f04c80aac49a563d7a6c791fd623d1 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Tue, 28 Sep 2021 14:42:49 +0200 Subject: [PATCH 1/4] Fix typos --- tests/arithmetics.porth | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/arithmetics.porth b/tests/arithmetics.porth index 9b22437e..849d8b11 100644 --- a/tests/arithmetics.porth +++ b/tests/arithmetics.porth @@ -10,7 +10,7 @@ include "std.porth" "------------------------------\n" stdout write -"Divison:\n" stdout write +"Division:\n" stdout write 69000 1000 / print "------------------------------\n" stdout write From b5d58af009753c2ab72223005f45b1bb376cbc37 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Tue, 28 Sep 2021 14:44:00 +0200 Subject: [PATCH 2/4] fixup! Fix typos --- tests/arithmetics.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/arithmetics.txt b/tests/arithmetics.txt index 672997ef..8b67b503 100644 --- a/tests/arithmetics.txt +++ b/tests/arithmetics.txt @@ -6,7 +6,7 @@ Addition: Subtraction: 420 ------------------------------ -Divison: +Division: 69 ------------------------------ Modulo: From d65de6fee10db5119b9f652760c7ad20c99af401 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Tue, 28 Sep 2021 14:44:54 +0200 Subject: [PATCH 3/4] fixup! Fix typos --- tests/memory.porth | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/memory.porth b/tests/memory.porth index 5a39365f..1dbe827f 100644 --- a/tests/memory.porth +++ b/tests/memory.porth @@ -9,7 +9,7 @@ mem 3 + 10 . // print "abc" to stdout 4 mem stdout write print -// increament each character by 1 making it "bcd" +// increment each character by 1 making it "bcd" mem 0 + dup , 1 + . mem 1 + dup , 1 + . mem 2 + dup , 1 + . @@ -19,4 +19,4 @@ mem 2 + dup , 1 + . // print UINT64_MAX (Largest 64 bit word) mem 18446744073709551615 .64 -mem ,64 print \ No newline at end of file +mem ,64 print From 773fff95c9badd211cfb6a21309a7892c2cf22e2 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Tue, 28 Sep 2021 14:50:21 +0200 Subject: [PATCH 4/4] fixup! Fix typos --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 757570a6..0b11d315 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ To updated expected output files run the `record` subcommand: $ ./test.py record ``` -The [./examples/](./examples/) folder contains programs that are ment for showcasing the language rather then testing it, but we still can use them for testing just like the stuff in the [./tests/](./tests/) folder: +The [./examples/](./examples/) folder contains programs that are meant for showcasing the language rather then testing it, but we still can use them for testing just like the stuff in the [./tests/](./tests/) folder: ```console $ ./test.py -f ./examples/