Skip to content

Commit

Permalink
Merge pull request rpgp#277 from hko-s/typo
Browse files Browse the repository at this point in the history
fix: debug output cleanup
  • Loading branch information
dignifiedquire authored Feb 6, 2024
2 parents 60db207 + 4e7ba07 commit 3015840
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/types/params/public.rs
Original file line number Diff line number Diff line change
Expand Up @@ -251,8 +251,8 @@ impl fmt::Debug for PublicParams {
} => f
.debug_struct("PublicParams::Elgamal")
.field("p", &p)
.field("g", &y)
.field("y", &g)
.field("g", &g)
.field("y", &y)
.finish(),

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

0 comments on commit 3015840

Please sign in to comment.