Skip to content

Commit

Permalink
chore: clippy fix (#2507)
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench authored Aug 31, 2023
1 parent 6728015 commit eeb8051
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion crates/wasm/src/compile.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ fn add_noir_lib(context: &mut Context, library_name: &str) {
context
.crate_graph
.add_dep(crate_id, library_name.parse().unwrap(), library_crate_id)
.expect(&format!("ICE: Cyclic error triggered by {} library", library_name));
.unwrap_or_else(|_| panic!("ICE: Cyclic error triggered by {} library", library_name));
}
}

Expand Down
1 change: 1 addition & 0 deletions cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"words": [
// In code
//
"aarch",
"aeiou",
"arraysort",
"arithmetization",
Expand Down

0 comments on commit eeb8051

Please sign in to comment.