args phrasing

This commit is contained in:
galister
2024-02-27 22:21:43 +01:00
parent 431de923b3
commit 4d29e2948d

View File

@@ -22,12 +22,12 @@ use flexi_logger::FileSpec;
#[command(version, about, long_about = None)] #[command(version, about, long_about = None)]
struct Args { struct Args {
#[cfg(feature = "openvr")] #[cfg(feature = "openvr")]
/// Start overlay with OpenVR backend /// Force OpenVR backend
#[arg(long)] #[arg(long)]
openvr: bool, openvr: bool,
#[cfg(feature = "openxr")] #[cfg(feature = "openxr")]
/// Start overlay with OpenXR backend /// Force OpenXR backend
#[arg(long)] #[arg(long)]
openxr: bool, openxr: bool,
@@ -35,8 +35,8 @@ struct Args {
#[arg(long)] #[arg(long)]
uninstall: bool, uninstall: bool,
/// Folder path to write logs to /// Path to write logs to
#[arg(short, long)] #[arg(short, long, value_name = "FOLDER")]
log_to: Option<String>, log_to: Option<String>,
} }