From fa8911389afafb74bdd99085ca17d8f4575c90bb Mon Sep 17 00:00:00 2001 From: Eliah Kagan Date: Tue, 4 Mar 2025 02:49:39 -0500 Subject: [PATCH 1/2] Fix a minor typo in a test case name --- gix-commitgraph/tests/access/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gix-commitgraph/tests/access/mod.rs b/gix-commitgraph/tests/access/mod.rs index 914ef3af4ec..a6ec1913da4 100644 --- a/gix-commitgraph/tests/access/mod.rs +++ b/gix-commitgraph/tests/access/mod.rs @@ -70,7 +70,7 @@ fn generation_numbers_overflow_is_handled_in_chained_graph() { } #[test] -fn octupus_merges() { +fn octopus_merges() { let (cg, refs) = graph_and_expected( "octopus_merges.sh", &[ From da643581c63682a10f8636eb9e1317f1990f8211 Mon Sep 17 00:00:00 2001 From: Eliah Kagan Date: Tue, 4 Mar 2025 04:57:19 -0500 Subject: [PATCH 2/2] doc: Simplify commit-graph doc link The `#:~:text` in the anchor was no longer working, as tested in Chromium-based browsers that ordinarily support such links. Like any broken anchor, it didn't keep the page from resolving. But it didn't jump to (nor participate in any highlighting of) specific text. Fortunately, the relevant text is near the top of the page. So the original intent of the longer and more complicated URL is satisfied in the simpler URL. --- gix-commitgraph/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gix-commitgraph/Cargo.toml b/gix-commitgraph/Cargo.toml index b2bc3a2ad45..ec5ca164c96 100644 --- a/gix-commitgraph/Cargo.toml +++ b/gix-commitgraph/Cargo.toml @@ -4,7 +4,7 @@ lints.workspace = true name = "gix-commitgraph" version = "0.26.0" repository = "https://github.com/GitoxideLabs/gitoxide" -documentation = "https://git-scm.com/docs/commit-graph#:~:text=The%20commit-graph%20file%20is%20a%20supplemental%20data%20structure,or%20in%20the%20info%20directory%20of%20an%20alternate." +documentation = "https://git-scm.com/docs/commit-graph" license = "MIT OR Apache-2.0" description = "Read-only access to the git commitgraph file format" authors = ["Conor Davis ", "Sebastian Thiel "]