summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMica White <botahamec@outlook.com>2026-08-27 12:21:50 -0400
committerMica White <botahamec@outlook.com>2026-08-27 12:21:50 -0400
commit7e4fd8164e385b80a587ea84646618ae49871677 (patch)
tree34a601ede0a1a9fa6eafeb39442549645860c94d /src
parent08dabfe4c7e5cf2726dbfafeb000cb1c1dde83c4 (diff)
Fix clippy
Diffstat (limited to 'src')
-rw-r--r--src/context/context.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/context/context.rs b/src/context/context.rs
index 80a1881..f67d686 100644
--- a/src/context/context.rs
+++ b/src/context/context.rs
@@ -8,7 +8,7 @@ use crate::{
impl<'l, L> LockContext<'l, L> {
/// Safety: Don't lock the locks in a different order than what the
- /// LockContext uses
+ /// `LockContext` uses
pub(crate) const unsafe fn new(lockable: &'l L) -> Self
where
L: OwnedLockable,