summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/parse/ast.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse/ast.rs b/src/parse/ast.rs
index 207a786..88ae734 100644
--- a/src/parse/ast.rs
+++ b/src/parse/ast.rs
@@ -128,7 +128,7 @@ impl Exe {
.args
.into_iter()
.map(|arg| arg.eval(env).map(IntoIterator::into_iter))
- .collect::<Result<Vec<std::vec::IntoIter<_>>, _>>()?
+ .collect::<Result<Vec<_>, _>>()?
.into_iter()
.flatten()
.collect(),