diff options
| author | klensy <klensy@users.noreply.github.com> | 2023-07-04 19:12:04 +0300 |
|---|---|---|
| committer | klensy <klensy@users.noreply.github.com> | 2023-07-04 19:19:50 +0300 |
| commit | d5dbe867f62e3ec17b517f1f3d15dd75c895060b (patch) | |
| tree | c21141c58a72ba3f7b7d6985ab7835274a1a2348 | |
| parent | ab914cf9f73f0004bad0ae6c086e804628a35e9f (diff) | |
| download | rust-d5dbe867f62e3ec17b517f1f3d15dd75c895060b.tar.gz rust-d5dbe867f62e3ec17b517f1f3d15dd75c895060b.zip | |
fix typo
| -rw-r--r-- | src/tools/rust-installer/src/scripter.rs | 2 |
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('-', " "); |
