diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index fbad2b2ab40..17e37f483be 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,3 +1,7 @@ -For now, please have a look at the section in the [README] file. +### Please disclose the use AI… + +…if it's *full agent mode* or *multi*-line completions in the PR comment. + +For everything else, please have a look at the respective section in the [README] file. [README]: https://github.com/GitoxideLabs/gitoxide#contributions diff --git a/gix/src/submodule/mod.rs b/gix/src/submodule/mod.rs index 29f95f81024..0da70e1dc49 100644 --- a/gix/src/submodule/mod.rs +++ b/gix/src/submodule/mod.rs @@ -314,11 +314,7 @@ pub mod status { /// ordered from cheap to expensive shows that the submodule is dirty. /// Thus, submodules that are clean will still impose the complete set of computation, as given. #[doc(alias = "submodule_status", alias = "git2")] - pub fn status( - &self, - ignore: config::Ignore, - check_dirty: bool, - ) -> Result { + pub fn status(&self, ignore: config::Ignore, check_dirty: bool) -> Result { self.status_opts(ignore, check_dirty, &mut |s| s) } /// Return the status of the submodule, just like [`status`](Self::status), but allows to adjust options