From d5dbe867f62e3ec17b517f1f3d15dd75c895060b Mon Sep 17 00:00:00 2001 From: klensy Date: Tue, 4 Jul 2023 19:12:04 +0300 Subject: [PATCH] fix typo --- src/tools/rust-installer/src/scripter.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/rust-installer/src/scripter.rs b/src/tools/rust-installer/src/scripter.rs index 30aed42e258b1..ff65e818b09c8 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('-', " ");