File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -4,9 +4,10 @@ Rustdoc actually uses the rustc internals directly. It lives in-tree with the
4
4
compiler and standard library. This chapter is about how it works.
5
5
For information about Rustdoc's features and how to use them, see
6
6
the [ Rustdoc book] ( https://doc.rust-lang.org/nightly/rustdoc/ ) .
7
- For more details about how rustdoc works, see the [ "Rustdoc internals" chapter] .
7
+ For more details about how rustdoc works, see the
8
+ [ "Rustdoc internals" chapter] [ Rustdoc internals ] .
8
9
9
- [ " Rustdoc internals" chapter ] : ./rustdoc-internals.md
10
+ [ Rustdoc internals ] : ./rustdoc-internals.md
10
11
11
12
Rustdoc is implemented entirely within the crate [ ` librustdoc ` ] [ rd ] . It runs
12
13
the compiler up to the point where we have an internal representation of a
@@ -47,7 +48,7 @@ does is call the `main()` that's in this crate's `lib.rs`, though.)
47
48
bundle is meant to be used as though you would copy out the ` doc ` folder to
48
49
a web server, since that's where the CSS/JS and landing page are.
49
50
* Use ` x.py test src/test/rustdoc* ` to run the tests using a stage1 rustdoc.
50
- * See [ rustdoc internals] for more information about tests.
51
+ * See [ Rustdoc internals] for more information about tests.
51
52
* Most of the HTML printing code is in ` html/format.rs ` and ` html/render.rs ` .
52
53
It's in a bunch of ` fmt::Display ` implementations and supplementary
53
54
functions.
You can’t perform that action at this time.
0 commit comments