Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bookmark: fix doc links #4694

Merged
merged 1 commit into from
Oct 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cli/src/commands/bookmark/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ use crate::ui::Ui;
/// "+".
///
/// For information about bookmarks, see
/// https://martinvonz.github.io/jj/docs/bookmarks.md.
/// https://martinvonz.github.io/jj/latest/bookmarks/.
#[derive(clap::Args, Clone, Debug)]
pub struct BookmarkListArgs {
/// Show all tracking and non-tracking remote bookmarks including the ones
Expand Down Expand Up @@ -71,7 +71,7 @@ pub struct BookmarkListArgs {
///
/// All 0-argument methods of the `RefName` type are available as keywords.
///
/// For the syntax, see https://martinvonz.github.io/jj/latest/docs/templates.md
/// For the syntax, see https://martinvonz.github.io/jj/latest/templates/
#[arg(long, short = 'T')]
template: Option<String>,
}
Expand Down
4 changes: 2 additions & 2 deletions cli/tests/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ List bookmarks and their targets

By default, a tracking remote bookmark will be included only if its target is different from the local target. A non-tracking remote bookmark won't be listed. For a conflicted bookmark (both local and remote), old target revisions are preceded by a "-" and new target revisions are preceded by a "+".

For information about bookmarks, see https://martinvonz.github.io/jj/docs/bookmarks.md.
For information about bookmarks, see https://martinvonz.github.io/jj/latest/bookmarks/.

**Usage:** `jj bookmark list [OPTIONS] [NAMES]...`

Expand All @@ -327,7 +327,7 @@ For information about bookmarks, see https://martinvonz.github.io/jj/docs/bookma

All 0-argument methods of the `RefName` type are available as keywords.

For the syntax, see https://martinvonz.github.io/jj/latest/docs/templates.md
For the syntax, see https://martinvonz.github.io/jj/latest/templates/



Expand Down