Skip to content

Commit

Permalink
doc: fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
bmwill committed Feb 27, 2024
1 parent 14663ff commit 5d66a2b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/types/crypto/zklogin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,13 +85,13 @@ pub struct ZkLoginPublicIdentifier {
derive(serde_derive::Serialize, serde_derive::Deserialize)
)]
pub struct Jwk {
/// Key type parameter, https://datatracker.ietf.org/doc/html/rfc7517#section-4.1
/// Key type parameter, <https://datatracker.ietf.org/doc/html/rfc7517#section-4.1>
pub kty: String,
/// RSA public exponent, https://datatracker.ietf.org/doc/html/rfc7517#section-9.3
/// RSA public exponent, <https://datatracker.ietf.org/doc/html/rfc7517#section-9.3>
pub e: String,
/// RSA modulus, https://datatracker.ietf.org/doc/html/rfc7517#section-9.3
/// RSA modulus, <https://datatracker.ietf.org/doc/html/rfc7517#section-9.3>
pub n: String,
/// Algorithm parameter, https://datatracker.ietf.org/doc/html/rfc7517#section-4.4
/// Algorithm parameter, <https://datatracker.ietf.org/doc/html/rfc7517#section-4.4>
pub alg: String,
}

Expand Down

0 comments on commit 5d66a2b

Please sign in to comment.