1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-08-09 04:22:45 +03:00

Fix broken doc links

This commit is contained in:
Quentin Gliech
2023-09-19 20:03:51 +02:00
parent 894957934d
commit 41dadcfd74
2 changed files with 2 additions and 2 deletions

View File

@@ -240,7 +240,7 @@ pub trait CompatSessionRepository: Send + Sync {
/// Returns [`Self::Error`] if the underlying repository fails /// Returns [`Self::Error`] if the underlying repository fails
async fn count(&mut self, filter: CompatSessionFilter<'_>) -> Result<usize, Self::Error>; async fn count(&mut self, filter: CompatSessionFilter<'_>) -> Result<usize, Self::Error>;
/// Record a batch of [`Session`] activity /// Record a batch of [`CompatSession`] activity
/// ///
/// # Parameters /// # Parameters
/// ///

View File

@@ -231,7 +231,7 @@ pub trait BrowserSessionRepository: Send + Sync {
user_session: &BrowserSession, user_session: &BrowserSession,
) -> Result<Option<Authentication>, Self::Error>; ) -> Result<Option<Authentication>, Self::Error>;
/// Record a batch of [`Session`] activity /// Record a batch of [`BrowserSession`] activity
/// ///
/// # Parameters /// # Parameters
/// ///