|
10 | 10 | - [How to build and run the compiler](./building/how-to-build-and-run.md) |
11 | 11 | - [Quickstart](./building/quickstart.md) |
12 | 12 | - [Prerequisites](./building/prerequisites.md) |
13 | | - - [Suggested Workflows](./building/suggested.md) |
| 13 | + - [Suggested workflows](./building/suggested.md) |
14 | 14 | - [Distribution artifacts](./building/build-install-distribution-artifacts.md) |
15 | | - - [Building Documentation](./building/compiler-documenting.md) |
| 15 | + - [Building documentation](./building/compiler-documenting.md) |
16 | 16 | - [Rustdoc overview](./rustdoc.md) |
17 | 17 | - [Adding a new target](./building/new-target.md) |
18 | 18 | - [Optimized build](./building/optimized-build.md) |
|
42 | 42 | - [with the linux perf tool](./profiling/with_perf.md) |
43 | 43 | - [with Windows Performance Analyzer](./profiling/wpa_profiling.md) |
44 | 44 | - [with the Rust benchmark suite](./profiling/with_rustc_perf.md) |
45 | | -- [crates.io Dependencies](./crates-io.md) |
| 45 | +- [crates.io dependencies](./crates-io.md) |
46 | 46 |
|
47 | 47 | # Contributing to Rust |
48 | 48 |
|
49 | | -- [Contribution Procedures](./contributing.md) |
| 49 | +- [Contribution procedures](./contributing.md) |
50 | 50 | - [About the compiler team](./compiler-team.md) |
51 | 51 | - [Using Git](./git.md) |
52 | 52 | - [Mastering @rustbot](./rustbot.md) |
|
56 | 56 | - [Stabilizing Features](./stabilization_guide.md) |
57 | 57 | - [Feature Gates](./feature-gates.md) |
58 | 58 | - [Coding conventions](./conventions.md) |
59 | | -- [Procedures for Breaking Changes](./bug-fix-procedure.md) |
| 59 | +- [Procedures for breaking changes](./bug-fix-procedure.md) |
60 | 60 | - [Using external repositories](./external-repos.md) |
61 | 61 | - [Fuzzing](./fuzzing.md) |
62 | 62 | - [Notification groups](notification-groups/about.md) |
|
88 | 88 | - [Overview of the compiler](./overview.md) |
89 | 89 | - [The compiler source code](./compiler-src.md) |
90 | 90 | - [Queries: demand-driven compilation](./query.md) |
91 | | - - [The Query Evaluation Model in Detail](./queries/query-evaluation-model-in-detail.md) |
| 91 | + - [The Query Evaluation Model in detail](./queries/query-evaluation-model-in-detail.md) |
92 | 92 | - [Incremental compilation](./queries/incremental-compilation.md) |
93 | | - - [Incremental compilation In Detail](./queries/incremental-compilation-in-detail.md) |
94 | | - - [Debugging and Testing](./incrcomp-debugging.md) |
| 93 | + - [Incremental compilation in detail](./queries/incremental-compilation-in-detail.md) |
| 94 | + - [Debugging and testing](./incrcomp-debugging.md) |
95 | 95 | - [Salsa](./queries/salsa.md) |
96 | | -- [Memory Management in Rustc](./memory.md) |
97 | | -- [Serialization in Rustc](./serialization.md) |
98 | | -- [Parallel Compilation](./parallel-rustc.md) |
| 96 | +- [Memory management in rustc](./memory.md) |
| 97 | +- [Serialization in rustc](./serialization.md) |
| 98 | +- [Parallel compilation](./parallel-rustc.md) |
99 | 99 | - [Rustdoc internals](./rustdoc-internals.md) |
100 | 100 | - [Search](./rustdoc-internals/search.md) |
101 | 101 | - [The `rustdoc` test suite](./rustdoc-internals/rustdoc-test-suite.md) |
102 | 102 | # Source Code Representation |
103 | 103 |
|
104 | 104 | - [Prologue](./part-3-intro.md) |
105 | 105 | - [Syntax and the AST](./syntax-intro.md) |
106 | | - - [Lexing and Parsing](./the-parser.md) |
| 106 | + - [Lexing and parsing](./the-parser.md) |
107 | 107 | - [Macro expansion](./macro-expansion.md) |
108 | 108 | - [Name resolution](./name-resolution.md) |
109 | 109 | - [Attributes](./attributes.md) |
110 | | - - [`#[test]` Implementation](./test-implementation.md) |
111 | | - - [Panic Implementation](./panic-implementation.md) |
112 | | - - [AST Validation](./ast-validation.md) |
113 | | - - [Feature Gate Checking](./feature-gate-ck.md) |
| 110 | + - [`#[test]` implementation](./test-implementation.md) |
| 111 | + - [Panic implementation](./panic-implementation.md) |
| 112 | + - [AST validation](./ast-validation.md) |
| 113 | + - [Feature gate checking](./feature-gate-ck.md) |
114 | 114 | - [Lang Items](./lang-items.md) |
115 | 115 | - [The HIR (High-level IR)](./hir.md) |
116 | 116 | - [Lowering AST to HIR](./ast-lowering.md) |
|
129 | 129 | - [Example: Type checking](./rustc-driver/interacting-with-the-ast.md) |
130 | 130 | - [Example: Getting diagnostics](./rustc-driver/getting-diagnostics.md) |
131 | 131 | - [Remarks on perma-unstable features](./rustc-driver/remarks-on-perma-unstable-features.md) |
132 | | -- [Errors and Lints](diagnostics.md) |
| 132 | +- [Errors and lints](diagnostics.md) |
133 | 133 | - [Diagnostic and subdiagnostic structs](./diagnostics/diagnostic-structs.md) |
134 | 134 | - [Translation](./diagnostics/translation.md) |
135 | 135 | - [`LintStore`](./diagnostics/lintstore.md) |
|
175 | 175 | - [Type checking](./type-checking.md) |
176 | 176 | - [Method Lookup](./method-lookup.md) |
177 | 177 | - [Variance](./variance.md) |
178 | | - - [Coherence Checking](./coherence.md) |
179 | | - - [Opaque Types](./opaque-types-type-alias-impl-trait.md) |
| 178 | + - [Coherence checking](./coherence.md) |
| 179 | + - [Opaque types](./opaque-types-type-alias-impl-trait.md) |
180 | 180 | - [Inference details](./opaque-types-impl-trait-inference.md) |
181 | 181 | - [Return Position Impl Trait In Trait](./return-position-impl-trait-in-trait.md) |
182 | 182 | - [Region inference restrictions][opaque-infer] |
183 | 183 | - [Const condition checking](./effects.md) |
184 | 184 | - [Pattern and Exhaustiveness Checking](./pat-exhaustive-checking.md) |
185 | | -- [Unsafety Checking](./unsafety-checking.md) |
| 185 | +- [Unsafety checking](./unsafety-checking.md) |
186 | 186 | - [MIR dataflow](./mir/dataflow.md) |
187 | 187 | - [Drop elaboration](./mir/drop-elaboration.md) |
188 | 188 | - [The borrow checker](./borrow_check.md) |
|
0 commit comments