summaryrefslogtreecommitdiff
path: root/src/poisonable
diff options
context:
space:
mode:
authorMica White <botahamec@gmail.com>2024-12-26 12:06:47 -0500
committerMica White <botahamec@gmail.com>2024-12-26 13:23:40 -0500
commit9eec9ab94bbe5c9fbd52d5bbf393fe1ddcc6fc26 (patch)
treea55cb81db2167cd3caf3330d503c2e9cacd24fd4 /src/poisonable
parentdc16634f4abdb1e830d2749e64b419740702b302 (diff)
Documentation
Diffstat (limited to 'src/poisonable')
-rw-r--r--src/poisonable/poisonable.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/poisonable/poisonable.rs b/src/poisonable/poisonable.rs
index ea51dd5..b49aa94 100644
--- a/src/poisonable/poisonable.rs
+++ b/src/poisonable/poisonable.rs
@@ -560,7 +560,7 @@ impl<L: LockableIntoInner> Poisonable<L> {
impl<L: LockableGetMut + RawLock> Poisonable<L> {
/// Returns a mutable reference to the underlying data.
///
- /// Since this call borrows the `Poisonable` mutable, no actual locking
+ /// Since this call borrows the `Poisonable` mutably, no actual locking
/// needs to take place - the mutable borrow statically guarantees no locks
/// exist.
///