From 1b91d2dc2e02ff0886087dc9c2d0df917a3c06d9 Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Thu, 27 Mar 2025 01:48:31 +0100 Subject: [PATCH] Updated the options naming for the properties for the AppOptions type in the app target. --- App/Sources/Options/AppOptions.swift | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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