lib: fix various typos
Some checks are pending
binaries / Build binary artifacts (push) Waiting to run
nix / flake check (push) Waiting to run
build / build (, macos-13) (push) Waiting to run
build / build (, macos-14) (push) Waiting to run
build / build (, ubuntu-latest) (push) Waiting to run
build / build (, windows-latest) (push) Waiting to run
build / build (--all-features, ubuntu-latest) (push) Waiting to run
build / Build jj-lib without Git support (push) Waiting to run
build / Check protos (push) Waiting to run
build / Check formatting (push) Waiting to run
build / Check that MkDocs can build the docs (push) Waiting to run
build / Check that MkDocs can build the docs with latest Python and uv (push) Waiting to run
build / cargo-deny (advisories) (push) Waiting to run
build / cargo-deny (bans licenses sources) (push) Waiting to run
build / Clippy check (push) Waiting to run
Codespell / Codespell (push) Waiting to run
website / prerelease-docs-build-deploy (ubuntu-latest) (push) Waiting to run
Scorecards supply-chain security / Scorecards analysis (push) Waiting to run

This commit fixes typos unintentionally introduced in d9c68e08, when
renaming `jj branch` to `jj bookmark`.
This commit is contained in:
Benjamin Tan 2024-12-20 15:32:36 +08:00
parent 7963536068
commit dddeb8b526
3 changed files with 5 additions and 5 deletions

View file

@ -277,7 +277,7 @@ impl<T: Ord, ID: Hash + Eq + Clone, E> TopoOrderReverseLazyInner<T, ID, E> {
}
}
/// Splits DAG at single fork point, and extracts bookmarky part as sub graph.
/// Splits DAG at single fork point, and extracts branchy part as sub graph.
///
/// ```text
/// o | C
@ -1067,7 +1067,7 @@ mod tests {
}
#[test]
fn test_topo_order_reverse_cycle_to_bookmarky_sub_graph() {
fn test_topo_order_reverse_cycle_to_branchy_sub_graph() {
// This graph:
// o D
// |\

View file

@ -283,7 +283,7 @@ fn test_reparent_range_linear() {
}
#[test]
fn test_reparent_range_bookmarky() {
fn test_reparent_range_branchy() {
let settings = testutils::user_settings();
let test_repo = TestRepo::init();
let repo_0 = test_repo.repo;
@ -297,7 +297,7 @@ fn test_reparent_range_bookmarky() {
parents.try_into().unwrap()
}
// Set up bookmarky operation graph:
// Set up branchy operation graph:
// G
// |\
// | F

View file

@ -264,7 +264,7 @@ fn test_rebase_descendants_backward() {
}
#[test]
fn test_rebase_descendants_chain_becomes_bookmarky() {
fn test_rebase_descendants_chain_becomes_branchy() {
let settings = testutils::user_settings();
let test_repo = TestRepo::init();
let repo = &test_repo.repo;