diff --git a/App/Sources/Options/AppOptions.swift b/App/Sources/Options/AppOptions.swift index 3bd38d8..9e2cef0 100644 --- a/App/Sources/Options/AppOptions.swift +++ b/App/Sources/Options/AppOptions.swift @@ -10,35 +10,35 @@ extension Doxy { /// A path to the location of the DocC archives in the local file system. @Option( - name: .shortAndLong, + name: .long, help: "A path to the location of the DocC archives in the local file system. Defaults to `Resources/Archives`." ) var archivesPath: String = "Resources/Archives" /// A hostname to bind the application to. @Option( - name: .shortAndLong, + name: .long, help: "A hostname to bind the application to. Defaults to `127.0.0.1`." ) var hostname: String = "127.0.0.1" /// A log level to set the logger service in the application. @Option( - name: .shortAndLong, + name: .long, help: "A log level to set the logger service in the application." ) var logLevel: Logger.Level? /// A name for the Hummingbird application. @Option( - name: .shortAndLong, + name: .long, help: "A name for the Hummingbird application. Defaults to `Doxy`." ) var name: String = "Doxy" /// A port number to bind the application to. @Option( - name: .shortAndLong, + name: .long, help: "A port number to bind the application to. Defaults to `8080`." ) var port: Int = 8080