summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorKatharina <kookie@spacekookie.de>2018-03-27 16:20:42 +0200
committerGitHub <noreply@github.com>2018-03-27 16:20:42 +0200
commit096fb92fc70567a1f0d8ff43f08e06d01b0eae2e (patch)
tree42b5cbbb9fd166a029a129af7a85829167700d0e /README.md
parente49cd3b71a5b5458ecd3f3937c04d1a35871a190 (diff)
downloadmrust-096fb92fc70567a1f0d8ff43f08e06d01b0eae2e.tar.gz
Fixing a typo in the README
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index c19f2926..439bae83 100644
--- a/README.md
+++ b/README.md
@@ -6,7 +6,7 @@ Intro
===
This project is an attempt at creating a simple rust compiler in C++, with the ultimate goal of being a separate re-implementation.
-`mrustc` works by comping assumed-valid rust code (i.e. without borrow checking) into a high-level assembly (currently using C, but LLVM/cretonne or even direct machine code could work) and getting an external code generator to turn that into optimised machine code. This works because the borrow checker doesn't have any impact on the generated code, just in checking that the code would be valid.
+`mrustc` works by compiling assumed-valid rust code (i.e. without borrow checking) into a high-level assembly (currently using C, but LLVM/cretonne or even direct machine code could work) and getting an external code generator to turn that into optimised machine code. This works because the borrow checker doesn't have any impact on the generated code, just in checking that the code would be valid.
Progress
--------