Skip to content

Commit 7d4d87e

Browse files
authored
Remove redundant type annotation (#3004)
1 parent 521b803 commit 7d4d87e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/justfile.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ impl<'src> Justfile<'src> {
224224

225225
let groups = ArgumentParser::parse_arguments(self, &arguments)?;
226226

227-
let mut invocations = Vec::<Invocation>::new();
227+
let mut invocations = Vec::new();
228228

229229
for group in &groups {
230230
invocations.push(self.invocation(&group.arguments, &group.path, 0)?);

0 commit comments

Comments
 (0)