Skip to content

Commit e3873f5

Browse files
authored
Rollup merge of #140817 - RalfJung:bootstrap-msg, r=jieyouxu
bootstrap: more consistent use of `...` when citing configuration snippets
2 parents c922eb9 + 0326a2c commit e3873f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bootstrap/src/bin/main.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ fn check_version(config: &Config) -> Option<String> {
163163
msg.push_str("WARNING: The `change-id` is missing in the `bootstrap.toml`. This means that you will not be able to track the major changes made to the bootstrap configurations.\n");
164164
msg.push_str("NOTE: to silence this warning, ");
165165
msg.push_str(&format!(
166-
"add `change-id = {latest_change_id}` or change-id = \"ignore\" at the top of `bootstrap.toml`"
166+
"add `change-id = {latest_change_id}` or `change-id = \"ignore\"` at the top of `bootstrap.toml`"
167167
));
168168
return Some(msg);
169169
}
@@ -195,7 +195,7 @@ fn check_version(config: &Config) -> Option<String> {
195195

196196
msg.push_str("NOTE: to silence this warning, ");
197197
msg.push_str(&format!(
198-
"update `bootstrap.toml` to use `change-id = {latest_change_id}` or change-id = \"ignore\" instead"
198+
"update `bootstrap.toml` to use `change-id = {latest_change_id}` or `change-id = \"ignore\"` instead"
199199
));
200200

201201
if io::stdout().is_terminal() {

0 commit comments

Comments
 (0)