From db636da207122d0beab0b27cdefc4341be92d612 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Thu, 25 Oct 2018 01:06:41 +0200 Subject: [PATCH] README: typo fix "becauses" => "because" --- README.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.markdown b/README.markdown index ad0d74af..5f07816f 100644 --- a/README.markdown +++ b/README.markdown @@ -99,7 +99,7 @@ broader support are welcome! The goal is to reduce code size (and increase performance) by performing all kinds of whole-program analysis passes. The official Go compiler doesn't do a -whole lot of analysis (except for escape analysis) becauses it needs to be fast, +whole lot of analysis (except for escape analysis) because it needs to be fast, but embedded programs are necessarily smaller so it becomes practical. And I think especially program size can be reduced by a large margin when actually trying to optimize for it.