Skip to content

Commit

Permalink
style: remove trailing dots from links in comments
Browse files Browse the repository at this point in the history
  • Loading branch information
nanderstabel committed Mar 15, 2024
1 parent 0bf01c0 commit dfda52b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion oid4vc-core/src/client_metadata.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use url::Url;
#[derive(Debug, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "snake_case")]
pub enum ClientMetadataEnum<T = ()> {
// TODO: Add all fields described in https://www.rfc-editor.org/rfc/rfc7591.html#section-2.
// TODO: Add all fields described in https://www.rfc-editor.org/rfc/rfc7591.html#section-2
ClientMetadata {
client_name: Option<String>,
logo_uri: Option<Url>,
Expand Down
4 changes: 2 additions & 2 deletions oid4vp/src/authorization_request.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use serde::{Deserialize, Serialize};
use std::collections::HashMap;

/// The Client ID Scheme enables the use of different mechanisms to obtain and validate the Verifier's metadata. As
/// described here: https://openid.net/specs/openid-4-verifiable-presentations-1_0-20.html#name-verifier-metadata-managemen.
/// described here: https://openid.net/specs/openid-4-verifiable-presentations-1_0-20.html#name-verifier-metadata-managemen
#[derive(Serialize, Deserialize, Debug, PartialEq, Clone)]
#[serde(rename_all = "snake_case")]
pub enum ClientIdScheme {
Expand Down Expand Up @@ -44,7 +44,7 @@ pub struct AuthorizationRequestParameters {
pub struct ClientMetadataParameters {
/// Object defining the formats and proof types of Verifiable Presentations and Verifiable Credentials that a
/// Verifier supports.
/// As described here: https://openid.net/specs/openid-4-verifiable-presentations-1_0-20.html#name-additional-verifier-metadat.
/// As described here: https://openid.net/specs/openid-4-verifiable-presentations-1_0-20.html#name-additional-verifier-metadat
vp_formats: HashMap<ClaimFormatDesignation, ClaimFormatProperty>,
}

Expand Down
2 changes: 1 addition & 1 deletion siopv2/src/authorization_request.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ pub struct AuthorizationRequestParameters {
#[derive(Serialize, Deserialize, Debug, PartialEq, Clone)]
pub struct ClientMetadataParameters {
/// Represents the URI scheme identifiers of supported Subject Syntax Types.
/// As described here: https://openid.net/specs/openid-connect-self-issued-v2-1_0.html#section-7.5-2.1.1.
/// As described here: https://openid.net/specs/openid-connect-self-issued-v2-1_0.html#section-7.5-2.1.1
pub subject_syntax_types_supported: Vec<SubjectSyntaxType>,
}

Expand Down

0 comments on commit dfda52b

Please sign in to comment.