Skip to content

Commit

Permalink
Remove unnecessary qualification
Browse files Browse the repository at this point in the history
  • Loading branch information
coolreader18 committed Feb 7, 2024
1 parent 5ed170d commit 057541d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/iter/collect/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ where
Some(len) => {
// Pseudo-specialization. See impl of ParallelExtend for Vec for more details.
let mut v = Vec::new();
super::collect::special_extend(pi, len, &mut v);
special_extend(pi, len, &mut v);
LinkedList::from([v])
}
None => super::extend::drive_list_vec(pi),
Expand Down

0 comments on commit 057541d

Please sign in to comment.