Skip to content

Commit 72d62b7

Browse files
committed
correct a few links
1 parent 654445d commit 72d62b7

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

src/overview.md

+3-7
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ we'll talk about that later.
7272
[lex]: https://rust-lang.github.io/rustc-guide/the-parser.html
7373
[`StringReader`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_parse/lexer/struct.StringReader.html
7474
[`librustc_parse`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_parse/index.html
75-
[parser]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_lexer/index.html
76-
[hir]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_lexer/index.html
75+
[parser]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_parser/index.html
76+
[hir]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_hir/index.html
7777
[type inference]: https://rust-lang.github.io/rustc-guide/type-inference.html
7878
[mir]: https://rust-lang.github.io/rustc-guide/mir/index.html
7979
[borrow checker]: https://rust-lang.github.io/rustc-guide/borrow_check.html
@@ -263,10 +263,6 @@ but there are already some promising performance improvements.
263263

264264
**TODO (or do we want such a section)?**
265265

266-
## A flow chart or walkthrough diagram
267-
268-
**TODO**
269-
270266
# Unresolved Questions
271267

272268
**TODO: find answers to these**
@@ -293,7 +289,7 @@ but there are already some promising performance improvements.
293289
- Guide: [Lexing and Parsing](https://rust-lang.github.io/rustc-guide/the-parser.html)
294290
- Parser definition: [`librustc_parse`](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_parse/index.html)
295291
- Main entry point: **TODO**
296-
- AST definition: [`syntax`](https://doc.rust-lang.org/nightly/nightly-rustc/syntax/index.html)
292+
- AST definition: [`librustc_ast`](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_ast/ast/index.html)
297293
- The High Level Intermediate Representation (HIR)
298294
- Guide: [The HIR](https://rust-lang.github.io/rustc-guide/hir.html)
299295
- Guide: [Identifiers in the HIR](https://rust-lang.github.io/rustc-guide/hir.html#identifiers-in-the-hir)

0 commit comments

Comments
 (0)