about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorTshepang Mbambo <tshepang@gmail.com>2024-12-10 16:11:11 +0200
committerGitHub <noreply@github.com>2024-12-10 22:11:11 +0800
commit6edc770217ef2b1ab99a95f22482f53eec082fb4 (patch)
tree7579696777e6bfd2dbe32bd422b14d7203995892 /src/doc/rustc-dev-guide
parent93aa2c22c007e30ef9959c86d642c0df056f118a (diff)
downloadrust-6edc770217ef2b1ab99a95f22482f53eec082fb4.tar.gz
rust-6edc770217ef2b1ab99a95f22482f53eec082fb4.zip
functionality removed from codebase (#2159)
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/appendix/glossary.md1
1 files changed, 0 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 51bbc1622a4..bf3475a984b 100644
--- a/src/doc/rustc-dev-guide/src/appendix/glossary.md
+++ b/src/doc/rustc-dev-guide/src/appendix/glossary.md
@@ -59,7 +59,6 @@ Term                                                  | Meaning
 <span id="obligation">obligation</span>        |  Something that must be proven by the trait system. ([see more](../traits/resolution.md))
 <span id="placeholder">placeholder</span>      |  **NOTE: skolemization is deprecated by placeholder** a way of handling subtyping around "for-all" types (e.g., `for<'a> fn(&'a u32)`) as well as solving higher-ranked trait bounds (e.g., `for<'a> T: Trait<'a>`). See [the chapter on placeholder and universes](../borrow_check/region_inference/placeholders_and_universes.md) for more details.
 <span id="point">point</span>                  |  Used in the NLL analysis to refer to some particular location in the MIR; typically used to refer to a node in the control-flow graph.
-<span id="polymorphize">polymorphize</span>    |  An optimization that avoids unnecessary monomorphisation. ([see more](../backend/monomorph.md#polymorphization))
 <span id="projection">projection</span>        |  A general term for a "relative path", e.g. `x.f` is a "field projection", and `T::Item` is an ["associated type projection"](../traits/goals-and-clauses.md#trait-ref).
 <span id="pc">promoted constants</span>        |  Constants extracted from a function and lifted to static scope; see [this section](../mir/index.md#promoted) for more details.
 <span id="provider">provider</span>            |  The function that executes a query. ([see more](../query.md))