mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-04 04:08:19 +00:00
Fix for future clippy
This commit is contained in:
parent
f2782e94d5
commit
1f1b981110
1 changed files with 2 additions and 2 deletions
|
@ -1949,7 +1949,7 @@ fn worker_task_step<'a>(
|
|||
match result {
|
||||
Ok(()) => {}
|
||||
Err(LoadingProblem::ChannelProblem(problem)) => {
|
||||
panic!("Channel problem: {:?}", problem);
|
||||
panic!("Channel problem: {problem:?}");
|
||||
}
|
||||
Err(LoadingProblem::ParsingFailed(problem)) => {
|
||||
msg_tx.send(Msg::FailedToParse(problem)).unwrap();
|
||||
|
@ -2048,7 +2048,7 @@ fn worker_task<'a>(
|
|||
match result {
|
||||
Ok(()) => {}
|
||||
Err(LoadingProblem::ChannelProblem(problem)) => {
|
||||
panic!("Channel problem: {:?}", problem);
|
||||
panic!("Channel problem: {problem:?}");
|
||||
}
|
||||
Err(LoadingProblem::ParsingFailed(problem)) => {
|
||||
msg_tx.send(Msg::FailedToParse(problem)).unwrap();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue