lnf: remove unnecessary mut

This commit is contained in:
Michael Sippel 2023-10-03 03:35:29 +02:00
parent 45f49378fa
commit f45593cfd5
Signed by: senvas
GPG key ID: F96CF119C34B64A6

View file

@ -45,7 +45,7 @@ impl TypeTerm {
}
TypeTerm::App(args) => {
let mut args_iter = args.into_iter();
let args_iter = args.into_iter();
new_ladder.push( TypeTerm::App(vec![]) );