about summary refs log tree commit diff
diff options
context:
space:
mode:
authorlolbinarycat <binarycat@envs.net>2025-09-10 11:31:04 -0500
committerGitHub <noreply@github.com>2025-09-10 11:31:04 -0500
commit196b49a20ba12281e5465fc5ca7e919ce9fc2b29 (patch)
treed85477887c26c7a5405b139d87cd7efa8154cc9f
parent096ae06e028768e539a7ae9ac56cd913011c6ee5 (diff)
downloadrust-196b49a20ba12281e5465fc5ca7e919ce9fc2b29.tar.gz
rust-196b49a20ba12281e5465fc5ca7e919ce9fc2b29.zip
glossary(rustbuild): reword according to code review
Co-authored-by: Tshepang Mbambo <hopsi@tuta.io>
-rw-r--r--src/doc/rustc-dev-guide/src/appendix/glossary.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/appendix/glossary.md b/src/doc/rustc-dev-guide/src/appendix/glossary.md
index 4fc3822dd73..21162f8ee7d 100644
--- a/src/doc/rustc-dev-guide/src/appendix/glossary.md
+++ b/src/doc/rustc-dev-guide/src/appendix/glossary.md
@@ -68,7 +68,7 @@ Term                                                  | Meaning
 <span id="rib">rib</span>                      |  A data structure in the name resolver that keeps track of a single scope for names. ([see more](../name-resolution.md))
 <span id="rpit">RPIT</span>                    |  A return-position `impl Trait`. ([see the reference](https://doc.rust-lang.org/reference/types/impl-trait.html#abstract-return-types)).
 <span id="rpitit">RPITIT</span>                |  A return-position `impl Trait` in trait. Unlike RPIT, this is desugared to a generic associated type (GAT). Introduced in [RFC 3425](https://rust-lang.github.io/rfcs/3425-return-position-impl-trait-in-traits.html). ([see more](../return-position-impl-trait-in-trait.md))
-<span id="rustbuild">rustbuild</span>          |  The part of bootstrap that is written in rust (old deprecated term)
+<span id="rustbuild">rustbuild</span>          |  A deprecated term for the part of bootstrap that is written in Rust
 <span id="scrutinee">scrutinee</span>          |  A scrutinee is the expression that is matched on in `match` expressions and similar pattern matching constructs. For example, in `match x { A => 1, B => 2 }`, the expression `x` is the scrutinee.
 <span id="sess">`sess`</span>                  |  The compiler _session_, which stores global data used throughout compilation
 <span id="side-tables">side tables</span>      |  Because the [AST](#ast) and HIR are immutable once created, we often carry extra information about them in the form of hashtables, indexed by the id of a particular node.