Skip to content

Commit

Permalink
autodoc updates
Browse files Browse the repository at this point in the history
  • Loading branch information
lestrrat committed Oct 7, 2024
1 parent 5b97182 commit 87d6a34
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions docs/04-jwk.md
Original file line number Diff line number Diff line change
Expand Up @@ -882,14 +882,14 @@ func ExampleJWK_KeySpecificMethods() {
// generated the contents will be different, and thus our
// tests would fail. But here you can see that once you
// convert the type you can access the RSA-specific methods
_ = rsakey.D()
_ = rsakey.DP()
_ = rsakey.DQ()
_ = rsakey.E()
_ = rsakey.N()
_ = rsakey.P()
_ = rsakey.Q()
_ = rsakey.QI()
_, _ = rsakey.D()
_, _ = rsakey.DP()
_, _ = rsakey.DQ()
_, _ = rsakey.E()
_, _ = rsakey.N()
_, _ = rsakey.P()
_, _ = rsakey.Q()
_, _ = rsakey.QI()
// OUTPUT:
//
}
Expand Down

0 comments on commit 87d6a34

Please sign in to comment.