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/ 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 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: 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