From 87d6a34e3fe611f621e58d0152ce88e27bbaa682 Mon Sep 17 00:00:00 2001 From: lestrrat Date: Mon, 7 Oct 2024 12:14:54 +0000 Subject: [PATCH] autodoc updates --- docs/04-jwk.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/04-jwk.md b/docs/04-jwk.md index 7e3441f6..969a26b8 100644 --- a/docs/04-jwk.md +++ b/docs/04-jwk.md @@ -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: // }