Skip to content

Commit 9016f92

Browse files
committed
fix clippy warnings due to new lints
Signed-off-by: Tristram Gräbener <[email protected]>
1 parent 58106fa commit 9016f92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lrs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ impl<CurveImpl: Curve> Lrs<CurveImpl> {
216216
.get(segment.segment_index() as usize)
217217
.geometry()
218218
.iter()
219-
.map(|p| (coord! {x: p.x(),y: p.y()}))
219+
.map(|p| coord! {x: p.x(),y: p.y()})
220220
.collect();
221221
if segment.direction() == lrs_generated::Direction::Decreasing {
222222
geom.reverse();

0 commit comments

Comments
 (0)