diff --git a/App/Sources/Options/DoxyOptions.swift b/App/Sources/Options/DoxyOptions.swift index 22547cf..080d3d2 100644 --- a/App/Sources/Options/DoxyOptions.swift +++ b/App/Sources/Options/DoxyOptions.swift @@ -18,7 +18,7 @@ extension Doxy { /// A hostname to bind the application to. @Option( name: .long, - help: "A hostname to bind the application to. Defaults to `127.0.0.1`." + help: "A hostname to bind the application to." ) var hostname: String = "127.0.0.1" @@ -32,14 +32,14 @@ extension Doxy { /// A name for the Hummingbird application. @Option( name: .long, - help: "A name for the Hummingbird application. Defaults to `Doxy`." + help: "A name for the Hummingbird application." ) var name: String = "Doxy" /// A port number to bind the application to. @Option( name: .long, - help: "A port number to bind the application to. Defaults to `8080`." + help: "A port number to bind the application to." ) var port: Int = 8080