Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Riley-Kilgore committed Dec 17, 2024
1 parent 896d0af commit 7b80e32
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion crates/aiken-lang/src/ast/well_known.rs
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,6 @@ impl Type {
}
.into(),
}
.into(),
}
.into(),
),
Expand Down
2 changes: 1 addition & 1 deletion crates/aiken-lang/src/format.rs
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@ impl<'comments> Formatter<'comments> {
on_test_failure: &'a OnTestFailure,
) -> Document<'a> {
// Fn name and args
let head = "benchmark "
let head = "bench "
.to_doc()
.append(name)
.append(wrap_args(args.iter().map(|e| (self.fn_arg_via(e), false))))
Expand Down
2 changes: 1 addition & 1 deletion crates/aiken-lang/src/test_framework.rs
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ impl Prng {
traces: result.logs(),
uplc_error,
})
.map(|term| Prng::from_result(term))
.map(Prng::from_result)
}

/// Obtain a Prng back from a fuzzer execution. As a reminder, fuzzers have the following
Expand Down

0 comments on commit 7b80e32

Please sign in to comment.