Skip to content

Commit 3015840

Browse files
Merge pull request rpgp#277 from hko-s/typo
fix: debug output cleanup
2 parents 60db207 + 4e7ba07 commit 3015840

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/types/params/public.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -251,8 +251,8 @@ impl fmt::Debug for PublicParams {
251251
} => f
252252
.debug_struct("PublicParams::Elgamal")
253253
.field("p", &p)
254-
.field("g", &y)
255-
.field("y", &g)
254+
.field("g", &g)
255+
.field("y", &y)
256256
.finish(),
257257

258258
PublicParams::EdDSA { ref curve, ref q } => f

0 commit comments

Comments
 (0)