Skip to content

Commit 0453ee3

Browse files
committed
refactor(linter): rename var for consistency (#13074)
Nit. Rename var to `tx_process_output` for consistency with everywhere else in this function. I assume the var was previously called `tx_resolve_output` everywhere, and this one slipped through the net when renaming the rest.
1 parent 5783df2 commit 0453ee3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/oxc_linter/src/service/runtime.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -469,10 +469,10 @@ impl Runtime {
469469
let dep_path = &request.resolved_requested_path;
470470
if encountered_paths.insert(Arc::clone(dep_path)) {
471471
scope.spawn({
472-
let tx_resolve_output = tx_process_output.clone();
472+
let tx_process_output = tx_process_output.clone();
473473
let dep_path = Arc::clone(dep_path);
474474
move |_| {
475-
tx_resolve_output
475+
tx_process_output
476476
.send(me.process_path(
477477
&dep_path,
478478
check_syntax_errors,

0 commit comments

Comments
 (0)