From 64f21a7001c08ff6ef36d6ac210e0c76cbf71ed6 Mon Sep 17 00:00:00 2001 From: Jade McGough Date: Sat, 16 May 2020 17:31:06 -0700 Subject: [PATCH] Add missing closing paren --- src/building/how-to-build-and-run.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/building/how-to-build-and-run.md b/src/building/how-to-build-and-run.md index 5171e5f31..16d3e1462 100644 --- a/src/building/how-to-build-and-run.md +++ b/src/building/how-to-build-and-run.md @@ -97,7 +97,7 @@ The result is that compiling `rustc` is done in stages: the symbol names used in the compiler source may not match the symbol names that would have been made by the stage1 compiler. This can be important when using dynamic linking (e.g., with - derives. Sometimes this means that some tests don't work when run + derives). Sometimes this means that some tests don't work when run with stage1. - **Stage 2:** we rebuild our stage1 compiler with itself to produce the stage2 compiler (i.e. it builds itself) to have all the _latest