1
Fork 0

Rollup merge of #135495 - yotamofek:close-backtick, r=Kobzol

Add missing closing backtick in commit hook message 🐸

This has been really bugging me 😮‍💨
This commit is contained in:
Matthias Krüger 2025-01-14 19:25:09 +01:00 committed by GitHub
commit eb763f81a7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -116,7 +116,7 @@ fn print_paths(verb: &str, adjective: Option<&str>, paths: &[String]) {
println!("fmt: {verb} {len} {adjective}files"); println!("fmt: {verb} {len} {adjective}files");
} }
if len > 1000 && !CiEnv::is_ci() { if len > 1000 && !CiEnv::is_ci() {
println!("hint: if this number seems too high, try running `git fetch origin master"); println!("hint: if this number seems too high, try running `git fetch origin master`");
} }
} }