Skip to content

Commit 26adefd

Browse files
authored
Clean-up minor issues (#802)
1 parent 467d429 commit 26adefd

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/compiler-debugging.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,11 +176,11 @@ So to put it together.
176176
```bash
177177
# This puts the output of all debug calls in `librustc_middle/traits` into
178178
# standard error, which might fill your console backscroll.
179-
$ RUSTC_LOG=rustc::traits rustc +local my-file.rs
179+
$ RUSTC_LOG=rustc_middle::traits rustc +local my-file.rs
180180
181181
# This puts the output of all debug calls in `librustc_middle/traits` in
182182
# `traits-log`, so you can then see it with a text editor.
183-
$ RUSTC_LOG=rustc::traits rustc +local my-file.rs 2>traits-log
183+
$ RUSTC_LOG=rustc_middle::traits rustc +local my-file.rs 2>traits-log
184184
185185
# Not recommended. This will show the output of all `debug!` calls
186186
# in the Rust compiler, and there are a *lot* of them, so it will be

src/contributing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ If you're looking for somewhere to start, check out the [E-easy][eeasy] tag.
453453
## Out-of-tree Contributions
454454

455455
There are a number of other ways to contribute to Rust that don't deal with
456-
this repository.
456+
rust-lang/rust.
457457

458458
Answer questions in the _Get Help!_ channels from the [Rust Discord
459459
server][rust-discord], on [users.rust-lang.org][users], or on

src/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ the code:
268268
*Note*: we don't use stable `rustfmt`; we use a pinned version with a special
269269
config, so this may result in different style from normal `rustfmt` if you have
270270
format-on-save turned on. It's a good habit to run `./x.py fmt` before every
271-
commit, as this reduces conflicts later. The pinned verson is built under
271+
commit, as this reduces conflicts later. The pinned version is built under
272272
`build/<target>/stage0/bin/rustfmt`, so if you want, you can use it for a
273273
single file or for format-on-save in your editor, which can be faster than `./x.py fmt`.
274274

@@ -508,4 +508,4 @@ master.
508508
- [The t-compiler zulip][z]
509509
- [The compiler's documentation (rustdocs)](https://doc.rust-lang.org/nightly/nightly-rustc/)
510510
- [The Forge](https://forge.rust-lang.org/) has more documentation about various procedures.
511-
- `#contribute`, `#compiler`, and `#rustdoc` on [Discord](https://discord.gg/rust-lang).
511+
- `#contribute` and `#rustdoc` on [Discord](https://discord.gg/rust-lang).

0 commit comments

Comments
 (0)