Updated the help documentation for some option parameters for the DoxyOptions in the executable target.

This commit is contained in:
Javier Cicchelli 2025-04-10 00:27:02 +02:00
parent 2d64d832c0
commit 382dabeda8

View File

@ -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