Update command overview

This commit is contained in:
Pedro Piñera 2018-07-21 00:12:53 -04:00 committed by Pedro Piñera Buendía
parent c6957b8200
commit 3f0ecbae13
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ class InitCommand: NSObject, Command {
// MARK: - Attributes
static let command = "init"
static let overview = "Bootstraps a project in the current directory."
static let overview = "Bootstraps a project."
let platformArgument: OptionArgument<String>
let productArgument: OptionArgument<String>
let pathArgument: OptionArgument<String>

View File

@ -41,7 +41,7 @@ final class InitCommandTests: XCTestCase {
}
func test_overview() {
XCTAssertEqual(InitCommand.overview, "Bootstraps a project in the current directory.")
XCTAssertEqual(InitCommand.overview, "Bootstraps a project.")
}
func test_init_registers_the_subparser() {