From 63c27128cbbbc1c22fcb9473be6f2a1c24caa648 Mon Sep 17 00:00:00 2001 From: Evan Martin Date: Tue, 29 Aug 2023 09:22:17 -0700 Subject: [PATCH] fix comments --- src/progress.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/progress.rs b/src/progress.rs index d2d9033..4d9aadd 100644 --- a/src/progress.rs +++ b/src/progress.rs @@ -27,13 +27,13 @@ pub trait Progress { /// Called as individual build tasks progress through build states. fn update(&mut self, counts: &StateCounts); - /// Called when a task starts or completes. + /// Called when a task starts. fn task_started(&mut self, id: BuildId, build: &Build); /// Called when a task's last line of output changes fn task_output(&mut self, id: BuildId, line: Vec); - /// Called when a task starts or completes. + /// Called when a task completes. fn task_finished(&mut self, id: BuildId, build: &Build, result: &TaskResult); /// Log some (debug) information, without corrupting the progress display.