diff options
| author | Graydon Hoare <[email protected]> | 2011-05-01 00:17:57 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-05-01 00:17:57 -0700 |
| commit | 18c2d2381ad4130b58dc4bbae4d7bf69348ab70b (patch) | |
| tree | 58d579e6fb0eb5b6c05ae80b731f4c9339668703 | |
| parent | Shift stages around; stage0/rustc depends on stage0/libstd.so. (diff) | |
| parent | Fix a typo in the documentation. (diff) | |
| download | rust-18c2d2381ad4130b58dc4bbae4d7bf69348ab70b.tar.xz rust-18c2d2381ad4130b58dc4bbae4d7bf69348ab70b.zip | |
Merge pull request #344 from rillian/master.
doc fix
| -rw-r--r-- | src/comp/README | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comp/README b/src/comp/README index fad13ba6..9411a5b7 100644 --- a/src/comp/README +++ b/src/comp/README @@ -92,7 +92,7 @@ Comparison with rustboot Rustc is written in a more "functional" style than rustboot; each rustc pass tends to depend only on the AST it's given as input, which it does not mutate. -Calculations flow from one pase to another by repeatedly rebuilding the AST +Calculations flow from one phase to another by repeatedly rebuilding the AST with additional annotations. Rustboot normalizes to a statement-centric AST. Rustc uses an |