From c560340744285c647ef5e200e2f6699a3b4e8e57 Mon Sep 17 00:00:00 2001 From: jasonnam Date: Sun, 1 Jul 2018 13:53:55 +0700 Subject: [PATCH] Update printed strings --- Sources/Flint/help/helpCommandHandler.swift | 2 +- Sources/Flint/spark/sparkCommandHandler.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/Flint/help/helpCommandHandler.swift b/Sources/Flint/help/helpCommandHandler.swift index 1ed59ed..c14dc15 100644 --- a/Sources/Flint/help/helpCommandHandler.swift +++ b/Sources/Flint/help/helpCommandHandler.swift @@ -38,7 +38,7 @@ let helpCommandHandler: CommandHandler = { _, _, _, _ in │ template list │ t l │ List available templates under template home │ │ template remove │ t r │ Remove templates under template home │ ├─────────────────┼───────┼─────────────────────────────────────────────────┤ - │ spark │ s │ Generate project from template │ + │ spark │ s │ Generate project or files from template │ ├─────────────────┼───────┼─────────────────────────────────────────────────┤ │ input │ i │ Generate variable input file from template │ ├─────────────────┼───────┼─────────────────────────────────────────────────┤ diff --git a/Sources/Flint/spark/sparkCommandHandler.swift b/Sources/Flint/spark/sparkCommandHandler.swift index b66ddbf..3caac2b 100644 --- a/Sources/Flint/spark/sparkCommandHandler.swift +++ b/Sources/Flint/spark/sparkCommandHandler.swift @@ -253,5 +253,5 @@ let sparkCommandHandler: CommandHandler = { _, _, operandValues, optionValues in } } - print("✓".color(.green) + " Project Generated") + print("✓".color(.green) + " Generated") }