We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d73c3ae commit 0896c95Copy full SHA for 0896c95
xtask/src/hooks.rs
@@ -209,14 +209,9 @@ pub fn check(
209
if python {
210
checks.push("python");
211
}
212
- let join_to = checks.len() - 1;
213
- let mut joined = checks[0..join_to].join(", ");
214
- if join_to > 1 {
215
- joined.push(',');
216
- }
217
msg_info.info(format_args!(
218
- "Running {joined} and {} checks.",
219
- checks[join_to]
+ "Running {} checks.",
+ checks.join(",")
220
))?;
221
222
let channel = get_channel_prefer_nightly(msg_info, toolchain)?;
0 commit comments