From 357805fbee48d6aa135b80d52253c49f06409ea2 Mon Sep 17 00:00:00 2001 From: Document Doctor Date: Sat, 12 Jan 2019 01:29:10 -0500 Subject: [PATCH] Fixed typos in README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 779f458..575c65b 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ which can be run on any of the many DCPU emulators to see that A is set to the c What are the issues? -------------------- -1. Very ineffecient +1. Very inefficient Currently there are many useless register swaps. For example, the Z -> Y -> X swap that is very common could be removed entirely. @@ -83,7 +83,7 @@ A program is a set of functions. A function consists of a type name, an identifi A type name is one of the following strings: "int", "void". Any other type name is invalid. -An identifier is any string consisting entireley of alphanumeric characters and underscores not starting with a digit. +An identifier is any string consisting entirely of alphanumeric characters and underscores not starting with a digit. An argument list is a set of Type-Identifier pairs seperated with commas, enclosed with parenthesis: `(int foo, int bar)`. Only the following types are allowed: "int".