about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2025-01-14 19:25:09 +0100
committerGitHub <noreply@github.com>2025-01-14 19:25:09 +0100
commiteb763f81a75900ef9bc7006113b7cd574a0c26a2 (patch)
tree8968205765450eb62bd4c4f57e447a5166efac40
parentf9c2c1256bc44605812f03b636c590bb369acc3d (diff)
parentc141f506bcf9eb3423f319ec7f047cf6a132af4b (diff)
downloadrust-eb763f81a75900ef9bc7006113b7cd574a0c26a2.tar.gz
rust-eb763f81a75900ef9bc7006113b7cd574a0c26a2.zip
Rollup merge of #135495 - yotamofek:close-backtick, r=Kobzol
Add missing closing backtick in commit hook message 🐸

This has been really bugging me 😮‍💨
-rw-r--r--src/bootstrap/src/core/build_steps/format.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/src/core/build_steps/format.rs b/src/bootstrap/src/core/build_steps/format.rs
index 40c908c3fa9..c7eafadee2d 100644
--- a/src/bootstrap/src/core/build_steps/format.rs
+++ b/src/bootstrap/src/core/build_steps/format.rs
@@ -116,7 +116,7 @@ fn print_paths(verb: &str, adjective: Option<&str>, paths: &[String]) {
         println!("fmt: {verb} {len} {adjective}files");
     }
     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`");
     }
 }