diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2020-09-23 15:45:35 +0200 |
|---|---|---|
| committer | Matthias Krüger <matthias.krueger@famsik.de> | 2020-09-23 15:45:35 +0200 |
| commit | b5d47bfa3aafb8fcb8c60d93fea45207c7ea5c7b (patch) | |
| tree | 2470483becbb2b3218293ac0cc0262177e787abf /src/bootstrap | |
| parent | 33aa8be8b5fa6872186a94d9e1fa5088da386e4b (diff) | |
| download | rust-b5d47bfa3aafb8fcb8c60d93fea45207c7ea5c7b.tar.gz rust-b5d47bfa3aafb8fcb8c60d93fea45207c7ea5c7b.zip | |
clarify that `changelog-seen = 1` goes to the beginning of config.toml
Fixes #77105
Diffstat (limited to 'src/bootstrap')
| -rw-r--r-- | src/bootstrap/bin/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/bin/main.rs b/src/bootstrap/bin/main.rs index f7512aa9fce..6af13fc83d0 100644 --- a/src/bootstrap/bin/main.rs +++ b/src/bootstrap/bin/main.rs @@ -40,7 +40,7 @@ fn check_version(config: &Config) -> Option<String> { } } else { msg.push_str("warning: x.py has made several changes recently you may want to look at\n"); - format!("add `changelog-seen = {}` to `config.toml`", VERSION) + format!("add `changelog-seen = {}` at the top of `config.toml`", VERSION) }; msg.push_str("help: consider looking at the changes in `src/bootstrap/CHANGELOG.md`\n"); |
