Skip to content

Commit

Permalink
fix(help-text): use correct punctuation
Browse files Browse the repository at this point in the history
  • Loading branch information
jtroo authored Dec 5, 2024
1 parent 6a1ea9c commit 7c13f6e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,19 @@ struct Args {
target_os = "windows",
doc = r"Configuration file(s) to use with kanata. If not specified, defaults to
kanata.kbd in the current working directory and
'C:\Users\user\AppData\Roaming\kanata\kanata.kbd'"
'C:\Users\user\AppData\Roaming\kanata\kanata.kbd'."
)]
#[cfg_attr(
target_os = "macos",
doc = "Configuration file(s) to use with kanata. If not specified, defaults to
kanata.kbd in the current working directory and
'$HOME/Library/Application Support/kanata/kanata.kbd.'"
'$HOME/Library/Application Support/kanata/kanata.kbd'."
)]
#[cfg_attr(
not(any(target_os = "macos", target_os = "windows")),
doc = "Configuration file(s) to use with kanata. If not specified, defaults to
kanata.kbd in the current working directory and
'$XDG_CONFIG_HOME/kanata/kanata.kbd'"
'$XDG_CONFIG_HOME/kanata/kanata.kbd'."
)]
#[arg(short, long, verbatim_doc_comment)]
cfg: Option<Vec<PathBuf>>,
Expand Down

0 comments on commit 7c13f6e

Please sign in to comment.