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(),
} }
.into(), .into(),
), ),

View File

@ -650,7 +650,7 @@ impl<'comments> Formatter<'comments> {
on_test_failure: &'a OnTestFailure, on_test_failure: &'a OnTestFailure,
) -> Document<'a> { ) -> Document<'a> {
// Fn name and args // Fn name and args
let head = "benchmark " let head = "bench "
.to_doc() .to_doc()
.append(name) .append(name)
.append(wrap_args(args.iter().map(|e| (self.fn_arg_via(e), false)))) .append(wrap_args(args.iter().map(|e| (self.fn_arg_via(e), false))))

View File

@ -617,7 +617,7 @@ impl Prng {
traces: result.logs(), traces: result.logs(),
uplc_error, 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 /// Obtain a Prng back from a fuzzer execution. As a reminder, fuzzers have the following