diff options
| author | Yuki Okushi <jtitor@2k36.org> | 2021-10-13 21:55:18 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-13 21:55:18 +0900 |
| commit | d01cfe1bf110bf7b8d14f63b935713fe7f664fab (patch) | |
| tree | 463c6d4527ae3e0725c8c4f0fcb42b09a28bc877 | |
| parent | 72626bfb158e44271bdc1599c835bffb16b788c4 (diff) | |
| parent | 4b4d3ee60b6602d2f32f02f170f531b5df15f127 (diff) | |
| download | rust-d01cfe1bf110bf7b8d14f63b935713fe7f664fab.tar.gz rust-d01cfe1bf110bf7b8d14f63b935713fe7f664fab.zip | |
Rollup merge of #89840 - wangkirin:master, r=jyn514
fix the stage0 tools config file path in `config.toml.example` in #88362 , the `stage0.txt ` have been switched to `stage0.json` , but in `config.toml.example` the guide didn't change , this PR fix this issue
| -rw-r--r-- | config.toml.example | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config.toml.example b/config.toml.example index b63ff14d7d3..61e57eee782 100644 --- a/config.toml.example +++ b/config.toml.example @@ -202,15 +202,15 @@ changelog-seen = 2 # You can use "$ROOT" to indicate the root of the git repository. #build-dir = "build" -# Instead of downloading the src/stage0.txt version of Cargo specified, use +# Instead of downloading the src/stage0.json version of Cargo specified, use # this Cargo binary instead to build all Rust code #cargo = "/path/to/cargo" -# Instead of downloading the src/stage0.txt version of the compiler +# Instead of downloading the src/stage0.json version of the compiler # specified, use this rustc binary instead as the stage0 snapshot compiler. #rustc = "/path/to/rustc" -# Instead of download the src/stage0.txt version of rustfmt specified, +# Instead of download the src/stage0.json version of rustfmt specified, # use this rustfmt binary instead as the stage0 snapshot rustfmt. #rustfmt = "/path/to/rustfmt" |
