Skip to content

Commit 29c74da

Browse files
committed
reorder glossary
1 parent 419f1d6 commit 29c74da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/glossary.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ cx | we tend to use "cx" as an abbrevation for context. Se
1515
DAG | a directed acyclic graph is used during compilation to keep track of dependencies between queries. ([see more](incremental-compilation.html))
1616
data-flow analysis | a static analysis that figures out what properties are true at each point in the control-flow of a program; see [the background chapter for more](./background.html#dataflow)
1717
DefId | an index identifying a definition (see `librustc/hir/def_id.rs`). Uniquely identifies a `DefPath`.
18+
free variable | a "free variable" is one that is not bound within an expression or term; see [the background chapter for more](./background.html#free-vs-bound)
1819
HIR | the High-level IR, created by lowering and desugaring the AST ([see more](hir.html))
1920
HirId | identifies a particular node in the HIR by combining a def-id with an "intra-definition offset".
2021
HIR Map | The HIR map, accessible via tcx.hir, allows you to quickly navigate the HIR and convert between various forms of identifiers.
21-
free variable | a "free variable" is one that is not bound within an expression or term; see [the background chapter for more](./background.html#free-vs-bound)
2222
'gcx | the lifetime of the global arena ([see more](ty.html))
2323
generics | the set of generic type parameters defined on a type or item
2424
ICE | internal compiler error. When the compiler crashes.

0 commit comments

Comments
 (0)