From adbf8e8dd8a112ece7fe6c1167892297f73ea325 Mon Sep 17 00:00:00 2001 From: Diana <5275194+DianaNites@users.noreply.github.com> Date: Sat, 17 Feb 2024 03:09:01 -0800 Subject: [PATCH] Fix a typo in `gix::clone::PrepareFetch::new`, crate_opts -> create_opts Fix a documentation typo in `gix::clone::PrepareFetch::new` crate_opts -> create_opts --- gix/src/clone/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gix/src/clone/mod.rs b/gix/src/clone/mod.rs index 9e401386226..a6022c1c6f6 100644 --- a/gix/src/clone/mod.rs +++ b/gix/src/clone/mod.rs @@ -55,7 +55,7 @@ pub enum Error { /// Instantiation impl PrepareFetch { - /// Create a new repository at `path` with `crate_opts` which is ready to clone from `url`, possibly after making additional adjustments to + /// Create a new repository at `path` with `create_opts` which is ready to clone from `url`, possibly after making additional adjustments to /// configuration and settings. /// /// Note that this is merely a handle to perform the actual connection to the remote, and if any of it fails the freshly initialized repository