Skip to content

Commit

Permalink
chore: remove hardcoded extension in debugger
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench committed Oct 15, 2023
1 parent 9530849 commit 075a14d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tooling/debugger/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ impl<'backend, B: BlackBoxFunctionSolver> DebugContext<'backend, B> {
let source = &file.source.as_str();
let start = loc.span.start() as usize;
let end = loc.span.end() as usize;
println!("At {}.nr:{start}-{end}", file.path.as_path().display());
println!("At {}:{start}-{end}", file.path.as_path().display());
println!("\n{}\n", &source[start..end]);
}
}
Expand Down

0 comments on commit 075a14d

Please sign in to comment.