Skip to content

Commit 193eb8d

Browse files
authored
Fix typo in jwk.rs (#353)
1 parent 95cfdfb commit 193eb8d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/jwk.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ pub struct CommonParameters {
251251
#[serde(rename = "kid", skip_serializing_if = "Option::is_none", default)]
252252
pub key_id: Option<String>,
253253

254-
/// X.509 Public key cerfificate URL. This is currently not implemented (correctly).
254+
/// X.509 Public key certificate URL. This is currently not implemented (correctly).
255255
///
256256
/// Serialized to `x5u`.
257257
#[serde(rename = "x5u", skip_serializing_if = "Option::is_none")]
@@ -412,7 +412,7 @@ pub struct Jwk {
412412
}
413413

414414
impl Jwk {
415-
/// Find whether the Algorithm is implmented and supported
415+
/// Find whether the Algorithm is implemented and supported
416416
pub fn is_supported(&self) -> bool {
417417
self.common.key_algorithm.unwrap().to_algorithm().is_ok()
418418
}

0 commit comments

Comments
 (0)