Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
sokra committed Sep 4, 2024
1 parent 52c5eb4 commit 492e0cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions turbopack/crates/turbo-tasks-backend/src/backend/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -284,9 +284,9 @@ impl TurboTasksBackend {
let reader_desc = reader.map(|r| self.get_task_desc_fn(r));
let note = move || {
if let Some(reader_desc) = reader_desc.as_ref() {
format!("try_read_task_cell (recompute) from {}", reader_desc())
format!("try_read_task_output (recompute) from {}", reader_desc())
} else {
format!("try_read_task_cell (recompute, untracked)")
format!("try_read_task_output (recompute, untracked)")
}
};

Expand Down

0 comments on commit 492e0cb

Please sign in to comment.