aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2015-10-23 15:33:41 +0200
committerMartin Odersky <odersky@gmail.com>2015-10-23 15:33:41 +0200
commit5612697342f14645b401205d84fb121b3117e3bb (patch)
treec1d5972316a759e1cad96e7c00a0b363a1e807be /docs
parent934eee886f3d8ddc17d88598ca39d36a117aa6db (diff)
downloaddotty-5612697342f14645b401205d84fb121b3117e3bb.tar.gz
dotty-5612697342f14645b401205d84fb121b3117e3bb.tar.bz2
dotty-5612697342f14645b401205d84fb121b3117e3bb.zip
fix typos
Diffstat (limited to 'docs')
-rw-r--r--docs/2015-10-23-dotty-compiler-bootstraps.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/2015-10-23-dotty-compiler-bootstraps.md b/docs/2015-10-23-dotty-compiler-bootstraps.md
index 3b4cd5122..5435df49b 100644
--- a/docs/2015-10-23-dotty-compiler-bootstraps.md
+++ b/docs/2015-10-23-dotty-compiler-bootstraps.md
@@ -5,6 +5,7 @@ by: Martin Odersky and Dmitry Petrashko
title: We Got LiftOff! The Dotty Compiler for Scala Bootstraps.
---
+## We Got Liftoff
The Dotty project is a platform to develop new technology for Scala
tooling and to try out concepts of future Scala language versions.
@@ -19,10 +20,9 @@ original one. This is what one calls a *bootstrap*.
## Why is this important?
The main reason is that this gives us a some validation of the
-trustworthiness of the compiler itself. Compilers are complex beasts,
+*trustworthiness* of the compiler itself. Compilers are complex beasts,
and many things can go wrong. By far the worst things that can go
-wrong are bugs where the compiler produces incorrect code for a
-correct program. It's not fun debugging code that looks perfectly
+wrong are bugs where incorrect code is produced. It's not fun debugging code that looks perfectly
fine, yet gets translated to something subtly wrong by the compiler.
Having the compile compile itself is a good test to demonstrate that