diff options
| author | Jonas Schievink <jonasschievink@gmail.com> | 2020-09-25 19:42:41 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-25 19:42:41 +0200 |
| commit | 8621ef1159d2a3fa30afb3ec65e5f678232f5723 (patch) | |
| tree | a62ddf81f78f440e76d3e011088eaed64bb5a9c7 | |
| parent | 1149b308cd8f0371e36cf2dd9e3e7a012adb4fbd (diff) | |
| parent | b5d47bfa3aafb8fcb8c60d93fea45207c7ea5c7b (diff) | |
Rollup merge of #77106 - matthiaskrgr:changelog_seen, r=Mark-Simulacrum
clarify that `changelog-seen = 1` goes to the beginning of config.toml Fixes #77105
| -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"); |
