Skip to content

Commit 4357cf5

Browse files
committed
Update glossary.md
1 parent 6ae355c commit 4357cf5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/glossary.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Term | Meaning
77
------------------------|--------
88
AST | the abstract syntax tree produced by the syntax crate; reflects user syntax very closely.
99
codegen unit | when we produce LLVM IR, we group the Rust code into a number of codegen units. Each of these units is processed by LLVM independently from one another, enabling parallelism. They are also the unit of incremental re-use.
10-
completeness | soundness is a technical term in type theory. Completeness means that every type-safe program also type-checks. Having both soundness and completeness is very hard, and usually soundness is more important. (see "soundness").
10+
completeness | completeness is a technical term in type theory. Completeness means that every type-safe program also type-checks. Having both soundness and completeness is very hard, and usually soundness is more important. (see "soundness").
1111
cx | we tend to use "cx" as an abbrevation for context. See also `tcx`, `infcx`, etc.
1212
DAG | a directed acyclic graph is used during compilation to keep track of dependencies between queries. ([see more](incremental-compilation.html))
1313
DefId | an index identifying a definition (see `librustc/hir/def_id.rs`). Uniquely identifies a `DefPath`.

0 commit comments

Comments
 (0)