Skip to content

Commit

Permalink
Change style of help
Browse files Browse the repository at this point in the history
  • Loading branch information
stevapple committed May 25, 2020
1 parent c60a484 commit 1623f94
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 9 deletions.
4 changes: 1 addition & 3 deletions Sources/Vapor/Commands/BootCommand.swift
Expand Up @@ -10,9 +10,7 @@ public final class BootCommand: Command {
}

/// See `Command`.
public var help: String {
return "Boots the application's providers."
}
public var help = "Boots the application's providers."

/// Create a new `BootCommand`.
public init() { }
Expand Down
4 changes: 1 addition & 3 deletions Sources/Vapor/Commands/RoutesCommand.swift
Expand Up @@ -16,9 +16,7 @@ public final class RoutesCommand: Command {
public init() { }
}

public var help: String {
return "Displays all registered routes."
}
public var help = "Displays all registered routes."

init() { }

Expand Down
4 changes: 1 addition & 3 deletions Sources/Vapor/Commands/ServeCommand.swift
Expand Up @@ -21,9 +21,7 @@ public final class ServeCommand: Command {
public let signature = Signature()

/// See `Command`.
public var help: String {
return "Begins serving the app over HTTP."
}
public var help = "Begins serving the app over HTTP."

private var signalSources: [DispatchSourceSignal]
private var didShutdown: Bool
Expand Down

0 comments on commit 1623f94

Please sign in to comment.