summaryrefslogtreecommitdiff
path: root/src/scripter.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/scripter.rs')
-rw-r--r--src/scripter.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/scripter.rs b/src/scripter.rs
index 3991604..fae464c 100644
--- a/src/scripter.rs
+++ b/src/scripter.rs
@@ -27,14 +27,14 @@ actor!{
}
impl Scripter {
- /// Generate the actual installer script
+ /// Generates the actual installer script
pub fn run(self) -> Result<()> {
// Replace dashes in the success message with spaces (our arg handling botches spaces)
- // (TODO: still needed? kept for compatibility for now...)
+ // TODO: still needed? Kept for compatibility for now.
let product_name = self.product_name.replace('-', " ");
// Replace dashes in the success message with spaces (our arg handling botches spaces)
- // (TODO: still needed? kept for compatibility for now...)
+ // TODO: still needed? Kept for compatibility for now.
let success_message = self.success_message.replace('-', " ");
let script = TEMPLATE