Skip to content

Commit

Permalink
clarify that changelog-seen = 1 goes to the beginning of config.toml
Browse files Browse the repository at this point in the history
Fixes #77105
  • Loading branch information
matthiaskrgr committed Sep 23, 2020
1 parent 33aa8be commit b5d47bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bootstrap/bin/main.rs
Expand Up @@ -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");
Expand Down

0 comments on commit b5d47bf

Please sign in to comment.