about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2025-01-28 18:17:33 +0100
committerGitHub <noreply@github.com>2025-01-28 18:17:33 +0100
commit9715fea5d52a521a62c7165fbd85ed6559db2b52 (patch)
treebfcecc08aac9c263256110e1f93712e7cb91cffc
parent36b5c58ef82d30b682e5cfc7dc2d74e4bd9c844d (diff)
parent1d8f59ff5107ec205a919c0becc9e216e17b6c7d (diff)
downloadrust-9715fea5d52a521a62c7165fbd85ed6559db2b52.tar.gz
rust-9715fea5d52a521a62c7165fbd85ed6559db2b52.zip
Rollup merge of #136178 - Noratrieb:alivename, r=pietroalbini
Update username in build helper example

no typos have been made in the process of creating this pull request

r? pietroalbini
-rw-r--r--src/build_helper/src/git.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/build_helper/src/git.rs b/src/build_helper/src/git.rs
index 01bac1498c2..3ef9c7ac35e 100644
--- a/src/build_helper/src/git.rs
+++ b/src/build_helper/src/git.rs
@@ -30,8 +30,8 @@ pub fn output_result(cmd: &mut Command) -> Result<String, String> {
 /// Finds the remote for rust-lang/rust.
 /// For example for these remotes it will return `upstream`.
 /// ```text
-/// origin  https://github.com/Nilstrieb/rust.git (fetch)
-/// origin  https://github.com/Nilstrieb/rust.git (push)
+/// origin  https://github.com/pietroalbani/rust.git (fetch)
+/// origin  https://github.com/pietroalbani/rust.git (push)
 /// upstream        https://github.com/rust-lang/rust (fetch)
 /// upstream        https://github.com/rust-lang/rust (push)
 /// ```