Skip to content

Commit

Permalink
Merge pull request #395 from aragonnetje6/master
Browse files Browse the repository at this point in the history
fixed reference typing issue
  • Loading branch information
orf committed Nov 9, 2023
2 parents 37afa00 + 7ad129c commit 6a8c687
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions gping/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -487,8 +487,7 @@ fn main() -> Result<()> {
iter::repeat(Constraint::Length(1))
.take(app.data.len())
.chain(iter::once(Constraint::Percentage(10)))
.collect::<Vec<_>>()
.as_ref(),
.collect::<Vec<_>>(),
)
.split(f.size());

Expand Down

0 comments on commit 6a8c687

Please sign in to comment.