Skip to content

Commit b29062c

Browse files
authored
Fix broken hyperlink (#862)
* Fix broken hyperlink * Link to previous pages instead of skipping ahead * Fix line lengths
1 parent daa7597 commit b29062c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/building/suggested.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,14 +81,16 @@ don't work (but that is easily detected and fixed).
8181
The sequence of commands you want is as follows:
8282

8383
- Initial build: `./x.py build -i library/std`
84-
- As [documented above](#command), this will build a functional
84+
- As [documented previously], this will build a functional
8585
stage1 compiler as part of running all stage0 commands (which include
8686
building a `std` compatible with the stage1 compiler) as well as the
8787
first few steps of the "stage 1 actions" up to "stage1 (sysroot stage1)
8888
builds std".
8989
- Subsequent builds: `./x.py build -i library/std --keep-stage 1`
9090
- Note that we added the `--keep-stage 1` flag here
9191

92+
[documented previously]: ./how-to-build-and-run.md#building-the-compiler
93+
9294
As mentioned, the effect of `--keep-stage 1` is that we just *assume* that the
9395
old standard library can be re-used. If you are editing the compiler, this
9496
is almost always true: you haven't changed the standard library, after

0 commit comments

Comments
 (0)