Skip to content

Commit 5f41cb6

Browse files
committed
change FnMut -> Fn
1 parent cdcd53e commit 5f41cb6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/policy/compiler.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -419,10 +419,10 @@ impl CompilerExtData {
419419
/// the types of its children.
420420
fn type_check_with_child<Pk, Ctx, C>(
421421
fragment: &Terminal<Pk, Ctx>,
422-
mut child: C,
422+
child: C,
423423
) -> Result<Self, types::Error>
424424
where
425-
C: FnMut(usize) -> Self,
425+
C: Fn(usize) -> Self,
426426
Pk: MiniscriptKey,
427427
Ctx: ScriptContext,
428428
{
@@ -445,10 +445,10 @@ impl CompilerExtData {
445445
/// given fragment
446446
fn type_check_common<'a, Pk, Ctx, C>(
447447
fragment: &'a Terminal<Pk, Ctx>,
448-
mut get_child: C,
448+
get_child: C,
449449
) -> Result<Self, types::Error>
450450
where
451-
C: FnMut(&'a Terminal<Pk, Ctx>, usize) -> Result<Self, types::Error>,
451+
C: Fn(&'a Terminal<Pk, Ctx>, usize) -> Result<Self, types::Error>,
452452
Pk: MiniscriptKey,
453453
Ctx: ScriptContext,
454454
{

0 commit comments

Comments
 (0)