Formatting

This commit is contained in:
Riley-Kilgore 2024-12-17 06:08:19 -08:00 committed by Riley
parent 84a0abeb0f
commit d73ee3dfe7
3 changed files with 2 additions and 3 deletions

View File

@ -261,7 +261,6 @@ impl Type {
}
.into(),
}
.into(),
}
.into(),
),

View File

@ -650,7 +650,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))))

View File

@ -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