From 62f58394ba7b203f55ac35ddcc4c0b79578f5706 Mon Sep 17 00:00:00 2001 From: Raoul Strackx <56830709+raoulstrackx@users.noreply.github.com> Date: Fri, 11 Feb 2022 14:42:50 +0100 Subject: [PATCH] Correction, building stage3 compiler (#1298) --- 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 93ebb487e39a3..3fd4ef19115c5 100644 --- a/src/building/how-to-build-and-run.md +++ b/src/building/how-to-build-and-run.md @@ -241,7 +241,7 @@ in other sections: - Building things: - `./x.py build` – builds everything using the stage 1 compiler, not just up to `std` - - `./x.py build --stage 2` – builds the stage2 compiler, along with `std` and + - `./x.py build --stage 2` – builds everything with the stage 2 compiler including `rustdoc` (which doesn't take too long) - Running tests (see the [section on running tests](../tests/running.html) for more details):