diff --git a/asyncgit/src/asyncjob/mod.rs b/asyncgit/src/asyncjob/mod.rs index 5280484a..f1dd645a 100644 --- a/asyncgit/src/asyncjob/mod.rs +++ b/asyncgit/src/asyncjob/mod.rs @@ -48,7 +48,7 @@ pub trait AsyncJob: Send + Sync + Clone { ) -> Result; /// allows observers to get intermediate progress status if the job customizes it - /// by default this will be returning ()::Default + /// by default this will be returning `Self::Progress::default()` fn get_progress(&self) -> Self::Progress { Self::Progress::default() }