Skip to content

Commit 3b34699

Browse files
authored
Merge pull request #1325 from kdelorey/fix/simple-docs-formatting
fix: missing closing backtick in gix lib documentation
2 parents 3fd6684 + f1bc4cd commit 3b34699

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

gix/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ worktree-archive = ["gix-archive", "worktree-stream", "attributes"]
122122
async-network-client = ["gix-protocol/async-client", "gix-pack/streaming-input", "attributes", "credentials"]
123123
## Use this if your crate uses `async-std` as runtime, and enable basic runtime integration when connecting to remote servers via the `git://` protocol.
124124
async-network-client-async-std = ["async-std", "async-network-client", "gix-transport/async-std"]
125-
## Make `gix-protocol` available along with a blocking client, providing access to the `file://`, git://` and `ssh://` transports.
125+
## Make `gix-protocol` available along with a blocking client, providing access to the `file://`, `git://` and `ssh://` transports.
126126
blocking-network-client = ["gix-protocol/blocking-client", "gix-pack/streaming-input", "attributes", "credentials"]
127127
## Stacks with `blocking-network-client` to provide support for HTTP/S using **curl**, and implies blocking networking as a whole, making the `https://` transport available.
128128
blocking-http-transport-curl = ["blocking-network-client", "gix-transport/http-client-curl"]

gix/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
//!
7373
//! What follows is a list of methods you might be missing, along with workarounds if available.
7474
//! * [`git2::Repository::open_bare()`](https://docs.rs/git2/*/git2/struct.Repository.html#method.open_bare) ➡ ❌ - use [`open()`] and discard if it is not bare.
75-
//! * [`git2::build::CheckoutBuilder::disable_filters()](https://docs.rs/git2/*/git2/build/struct.CheckoutBuilder.html#method.disable_filters) ➡ ❌ *(filters are always applied during checkouts)*
75+
//! * [`git2::build::CheckoutBuilder::disable_filters()`](https://docs.rs/git2/*/git2/build/struct.CheckoutBuilder.html#method.disable_filters) ➡ ❌ *(filters are always applied during checkouts)*
7676
//! * [`git2::Repository::submodule_status()`](https://docs.rs/git2/*/git2/struct.Repository.html#method.submodule_status) ➡ [`Submodule::state()`] - status provides more information and conveniences though, and an actual worktree status isn't performed.
7777
//!
7878
//! #### Integrity checks

0 commit comments

Comments
 (0)