Skip to content

Commit

Permalink
Fix some broken doc links (#157)
Browse files Browse the repository at this point in the history
  • Loading branch information
pedromfedricci committed Nov 16, 2023
1 parent 2cc9ee6 commit 7440fab
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/mutex.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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")))]
Expand Down

0 comments on commit 7440fab

Please sign in to comment.