Fix broken link in rustdoc (#5222)

This commit is contained in:
Quentin Gliech
2025-11-07 10:58:59 +01:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -18,7 +18,7 @@ use tracing_subscriber::{
use crate::LogContext;
/// An event formatter usable by the [`tracing-subscriber`] crate, which
/// An event formatter usable by the [`tracing_subscriber`] crate, which
/// includes the log context and the OTEL trace ID.
#[derive(Debug, Default)]
pub struct EventFormatter;

View File

@@ -20,7 +20,7 @@
//! To define a new repository, you have to:
//! 1. Define a new (async) repository trait, with the methods you need
//! 2. Write an implementation of this trait for each storage backend you want
//! (currently only for [`mas-storage-pg`])
//! (currently only for `mas-storage-pg`)
//! 3. Make it accessible via the [`RepositoryAccess`] trait
//!
//! The repository trait definition should look like this: