Skip to content

Commit acc6718

Browse files
nnethercotejyn514
authored andcommitted
Address review comments in #1286.
1 parent a992723 commit acc6718

File tree

4 files changed

+4
-10
lines changed

4 files changed

+4
-10
lines changed

src/conventions.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,8 @@ Therefore, formatting this repository using `cargo fmt` is not recommended.
1616
Instead, formatting should be done using `./x.py fmt`. It's a good habit to run
1717
`./x.py fmt` before every commit, as this reduces conflicts later.
1818

19-
Formatting is checked by the "tidy" script. It runs automatically when you do
20-
`./x.py test` and can be run in isolation with `./x.py test tidy`. `./x.py fmt
21-
--check` also works.
19+
Formatting is checked by the `tidy` script. It runs automatically when you do
20+
`./x.py test` and can be run in isolation with `./x.py fmt --check`.
2221

2322
If you want to use format-on-save in your editor, the pinned version of
2423
`rustfmt` is built under `build/<target>/stage0/bin/rustfmt`. You'll have to

src/getting-started.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,8 @@ of time.
116116

117117
[rust-analyzer]: ./building/suggested.html#configuring-rust-analyzer-for-rustc
118118

119-
See the chapters on [building](./building/how-to-build-and-run.md) and
120-
[testing](./tests/intro.md) for more details.
119+
See the chapters on [building](./building/how-to-build-and-run.md),
120+
[testing](./tests/intro.md), and [rustdoc](./rustdoc.md) for more details.
121121

122122
### Contributing code to other Rust projects
123123

src/rustdoc.md

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ does is call the `main()` that's in this crate's `lib.rs`, though.)
4646
* Use `./x.py build` to make a usable
4747
rustdoc you can run on other projects.
4848
* Add `library/test` to be able to use `rustdoc --test`.
49-
* Add `--keep-stage 1` on subsequent runs to avoid rebuilding some things.
5049
* Run `rustup toolchain link stage2 build/$TARGET/stage2` to add a
5150
custom toolchain called `stage2` to your rustup environment. After
5251
running that, `cargo +stage2 doc` in any directory will build with

src/tests/running.md

-4
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,7 @@ modifying rustc to see if things are generally working correctly would be the
3636
following:
3737

3838
```bash
39-
# First build
4039
./x.py test src/test/ui
41-
42-
# Subsequent builds (optional, but can save time)
43-
./x.py test src/test/ui --keep-stage 1
4440
```
4541

4642
This will run the `ui` test suite. Of course, the choice

0 commit comments

Comments
 (0)