From 76c8acfe5c3741f02cebe6188814e7c28296c94d Mon Sep 17 00:00:00 2001 From: Henry Boisdequin Date: Sat, 30 Jan 2021 14:07:02 +0530 Subject: [PATCH] put `x.py` in ticks --- src/doc/rustc-dev-guide/src/building/bootstrapping.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/rustc-dev-guide/src/building/bootstrapping.md b/src/doc/rustc-dev-guide/src/building/bootstrapping.md index 9da24e4c6fbc..5437a460a32d 100644 --- a/src/doc/rustc-dev-guide/src/building/bootstrapping.md +++ b/src/doc/rustc-dev-guide/src/building/bootstrapping.md @@ -107,7 +107,7 @@ However, most of the code lives in `src/bootstrap`. `bootstrap` has a difficult problem: it is written in Rust, but yet it is run before the rust compiler is built! To work around this, there are two components of bootstrap: the main one written in rust, and `bootstrap.py`. -`bootstrap.py` is what gets run by x.py. It takes care of downloading the +`bootstrap.py` is what gets run by `x.py`. It takes care of downloading the `stage0` compiler, which will then build the bootstrap binary written in Rust.