From 378ed01c7cba5029513b93bf9b1f0652db3c2b2e Mon Sep 17 00:00:00 2001 From: Pedro Fedricci Date: Thu, 16 Nov 2023 00:22:37 -0300 Subject: [PATCH] Fix some broken doc links --- src/mutex.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/mutex.rs b/src/mutex.rs index e964882..40b7d0f 100644 --- a/src/mutex.rs +++ b/src/mutex.rs @@ -6,12 +6,12 @@ //! //! `ticket_mutex` is disabled by default. //! -//! [`Mutex`]: ../struct.Mutex.html -//! [`MutexGuard`]: ../struct.MutexGuard.html -//! [`TicketMutex`]: ./struct.TicketMutex.html -//! [`TicketMutexGuard`]: ./struct.TicketMutexGuard.html -//! [`SpinMutex`]: ./struct.SpinMutex.html -//! [`SpinMutexGuard`]: ./struct.SpinMutexGuard.html +//! [`Mutex`]: ./struct.Mutex.html +//! [`MutexGuard`]: ./struct.MutexGuard.html +//! [`TicketMutex`]: ./ticket/struct.TicketMutex.html +//! [`TicketMutexGuard`]: ./ticket/struct.TicketMutexGuard.html +//! [`SpinMutex`]: ./spin/struct.SpinMutex.html +//! [`SpinMutexGuard`]: ./spin/struct.SpinMutexGuard.html #[cfg(feature = "spin_mutex")] #[cfg_attr(docsrs, doc(cfg(feature = "spin_mutex")))]