From c42c9f900a22fcf7bdfb7ad4ee8082922bdce814 Mon Sep 17 00:00:00 2001 From: Stephan Dilly Date: Tue, 9 Nov 2021 14:00:41 +0100 Subject: [PATCH] nightly clippy fix --- asyncgit/src/asyncjob/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() }