diff options
Diffstat (limited to 'vendor/gix/src/clone/access.rs')
-rw-r--r-- | vendor/gix/src/clone/access.rs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/vendor/gix/src/clone/access.rs b/vendor/gix/src/clone/access.rs index 5b6e5fbab..1c817e939 100644 --- a/vendor/gix/src/clone/access.rs +++ b/vendor/gix/src/clone/access.rs @@ -1,6 +1,4 @@ -use crate::bstr::BString; -use crate::clone::PrepareFetch; -use crate::Repository; +use crate::{bstr::BString, clone::PrepareFetch, Repository}; /// Builder impl PrepareFetch { @@ -12,7 +10,7 @@ impl PrepareFetch { /// _all changes done in `f()` will be persisted_. /// /// It can also be used to configure additional options, like those for fetching tags. Note that - /// [with_fetch_tags()][crate::Remote::with_fetch_tags()] should be called here to configure the clone as desired. + /// [`with_fetch_tags()`][crate::Remote::with_fetch_tags()] should be called here to configure the clone as desired. /// Otherwise a clone is configured to be complete and fetches all tags, not only those reachable from all branches. pub fn configure_remote( mut self, |