summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index b953cda..8a35eb1 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -37,7 +37,7 @@
//! [`LockCollection::new_unchecked`] doesn't do this check, but is unsafe to
//! call.
//!
-//! **Avoid using distinct lock orders for `LockCollection`.** The problem is
+//! **Avoid using distinct lock orders for [`LockCollection`].** The problem is
//! that this library must iterate through the list of locks, and not complete
//! until every single one of them is unlocked. This also means that attempting
//! to lock multiple mutexes gives you a lower chance of ever running. Only one
@@ -104,7 +104,6 @@
//! println!("{}", *data.0);
//! println!("{}", *data.1);
//! ```
-//! ```
mod collection;
mod key;