From 382dabeda8e1502604ef3d374d1b8755f65d25bf Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Thu, 10 Apr 2025 00:27:02 +0200 Subject: [PATCH] Updated the help documentation for some option parameters for the DoxyOptions in the executable target. --- App/Sources/Options/DoxyOptions.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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