Skip to content

Commit

Permalink
fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
evmar committed Aug 29, 2023
1 parent 84c14c0 commit 63c2712
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/progress.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<u8>);

/// 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.
Expand Down

0 comments on commit 63c2712

Please sign in to comment.