Fixes typo in 'jj git init' args

This commit is contained in:
Rowan Walsh 2024-04-23 17:29:49 -07:00 committed by Martin von Zweigbergk
parent 742c3f6fea
commit f185a838d7
2 changed files with 2 additions and 2 deletions

View file

@ -115,7 +115,7 @@ pub struct GitRemoteListArgs {}
pub struct GitInitArgs {
/// The destination directory where the `jj` repo will be created.
/// If the directory does not exist, it will be created.
/// If no directory is diven, the current directory is used.
/// If no directory is given, the current directory is used.
///
/// By default the `git` repo is under `$destination/.jj`
#[arg(default_value = ".", value_hint = clap::ValueHint::DirPath)]

View file

@ -846,7 +846,7 @@ Create a new Git backed repo
###### **Arguments:**
* `<DESTINATION>` — The destination directory where the `jj` repo will be created. If the directory does not exist, it will be created. If no directory is diven, the current directory is used
* `<DESTINATION>` — The destination directory where the `jj` repo will be created. If the directory does not exist, it will be created. If no directory is given, the current directory is used
Default value: `.`