args phrasing

This commit is contained in:
galister 2024-02-27 22:21:43 +01:00
parent 431de923b3
commit 4d29e2948d
1 changed files with 4 additions and 4 deletions

View File

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