diff --git a/src/lib.rs b/src/lib.rs index cbb4805..cf0f11f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1072,7 +1072,7 @@ where /// Acquires ownership of the `code` because authorization codes may only be used once to /// retrieve an access token from the authorization server. /// - /// See https://tools.ietf.org/html/rfc6749#section-4.1.3 + /// See /// pub fn exchange_code(&self, code: AuthorizationCode) -> CodeTokenRequest { self.oauth2_client.exchange_code(code) @@ -1114,7 +1114,7 @@ where /// /// Creates a request builder for exchanging a refresh token for an access token. /// - /// See https://tools.ietf.org/html/rfc6749#section-6 + /// See /// pub fn exchange_refresh_token<'a, 'b>( &'a self, @@ -1129,7 +1129,7 @@ where /// /// Creates a request builder for exchanging credentials for an access token. /// - /// See https://tools.ietf.org/html/rfc6749#section-6 + /// See /// pub fn exchange_password<'a, 'b>( &'a self, @@ -1145,7 +1145,7 @@ where /// /// Creates a request builder for exchanging client credentials for an access token. /// - /// See https://tools.ietf.org/html/rfc6749#section-4.4 + /// See /// pub fn exchange_client_credentials<'a, 'b>( &'a self, @@ -1194,7 +1194,7 @@ where /// /// Creates a request builder for obtaining metadata about a previously received token. /// - /// See https://tools.ietf.org/html/rfc7662 + /// See /// pub fn introspect<'a>( &'a self, @@ -1212,7 +1212,7 @@ where /// Attempting to submit the generated request without calling [`set_revocation_uri()`](Self::set_revocation_uri()) /// first will result in an error. /// - /// See https://tools.ietf.org/html/rfc7009 + /// See /// pub fn revoke_token( &self, diff --git a/src/logout.rs b/src/logout.rs index d79415d..86e37d4 100644 --- a/src/logout.rs +++ b/src/logout.rs @@ -43,7 +43,7 @@ impl AdditionalProviderMetadata for LogoutProviderMetadata where A: Additi /// /// Provider metadata returned by [OpenID Connect Discovery]( /// https://openid.net/specs/openid-connect-discovery-1_0.html#ProviderMetadata) -/// that returns [`openidconnect::ProviderMetadata::additional_metadata`] for providers +/// that returns [`ProviderMetadata::additional_metadata`] for providers /// implementing [OpenID Connect RP-Initiated Logout 1.0]( /// https://openid.net/specs/openid-connect-rpinitiated-1_0.html). /// diff --git a/src/types.rs b/src/types.rs index 4499b46..e1ba7f3 100644 --- a/src/types.rs +++ b/src/types.rs @@ -1015,7 +1015,7 @@ pub struct ResponseTypes( ); impl ResponseTypes { /// - /// Create a new ResponseTypes to wrap the given Vec. + /// Create a new [`ResponseTypes`] to wrap the given [`Vec`]. /// pub fn new(s: Vec) -> Self { ResponseTypes::(s)