about summary refs log tree commit diff
diff options
context:
space:
mode:
authorklensy <klensy@users.noreply.github.com>2023-07-04 19:12:04 +0300
committerklensy <klensy@users.noreply.github.com>2023-07-04 19:19:50 +0300
commitd5dbe867f62e3ec17b517f1f3d15dd75c895060b (patch)
treec21141c58a72ba3f7b7d6985ab7835274a1a2348
parentab914cf9f73f0004bad0ae6c086e804628a35e9f (diff)
downloadrust-d5dbe867f62e3ec17b517f1f3d15dd75c895060b.tar.gz
rust-d5dbe867f62e3ec17b517f1f3d15dd75c895060b.zip
fix typo
-rw-r--r--src/tools/rust-installer/src/scripter.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/rust-installer/src/scripter.rs b/src/tools/rust-installer/src/scripter.rs
index 30aed42e258..ff65e818b09 100644
--- a/src/tools/rust-installer/src/scripter.rs
+++ b/src/tools/rust-installer/src/scripter.rs
@@ -32,7 +32,7 @@ actor! {
 impl Scripter {
     /// Generates the actual installer script
     pub fn run(self) -> Result<()> {
-        // Replace dashes in the success message with spaces (our arg handling botches spaces)
+        // Replace dashes in the product name with spaces (our arg handling botches spaces)
         // FIXME: still needed? Kept for compatibility for now.
         let product_name = self.product_name.replace('-', " ");