about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTshepang Mbambo <hopsi@tuta.io>2025-09-08 06:54:04 +0200
committerTshepang Mbambo <hopsi@tuta.io>2025-09-08 06:54:04 +0200
commit94da52007bf7583a833911c92cb58f9e90544542 (patch)
treefa38973f7c2d780312bf6a420da200ae58688914
parentcb0e26ff4c40bc7e8e05d62f12ca685928a5f130 (diff)
readability
-rw-r--r--src/doc/rustc-dev-guide/src/building/bootstrapping/writing-tools-in-bootstrap.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/building/bootstrapping/writing-tools-in-bootstrap.md b/src/doc/rustc-dev-guide/src/building/bootstrapping/writing-tools-in-bootstrap.md
index 8bda2257536..8250a6f3b51 100644
--- a/src/doc/rustc-dev-guide/src/building/bootstrapping/writing-tools-in-bootstrap.md
+++ b/src/doc/rustc-dev-guide/src/building/bootstrapping/writing-tools-in-bootstrap.md
@@ -7,7 +7,7 @@ There are three types of tools you can write in bootstrap:
   Use this for tools that don’t need anything from the in-tree compiler and can run with the stage0 `rustc`.
   The output is placed in the "bootstrap-tools" directory.
   This mode is for general-purpose tools built entirely with the stage0 compiler,
-  including target libraries and only works for stage 0.
+  including target libraries, and it only works for stage 0.
 
 - **`Mode::ToolStd`**