Skip to content

Commit 8602ad2

Browse files
committed
clippy
1 parent 5263f7f commit 8602ad2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

curve25519-dalek/src/edwards.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -582,8 +582,8 @@ impl EdwardsPoint {
582582
.iter()
583583
.zip(&zs)
584584
.map(|(input, recip)| {
585-
let x = &input.X * &recip;
586-
let y = &input.Y * &recip;
585+
let x = &input.X * recip;
586+
let y = &input.Y * recip;
587587
Self::compress_affine(x, y)
588588
})
589589
.collect()

0 commit comments

Comments
 (0)