File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -396,7 +396,7 @@ impl<T: ?Sized> Mutex<T> {
396
396
self . poison . get ( )
397
397
}
398
398
399
- /// Clear the poisoned state from a mutex
399
+ /// Clear the poisoned state from a mutex.
400
400
///
401
401
/// If the mutex is poisoned, it will remain poisoned until this function is called. This
402
402
/// allows recovering from a poisoned state and marking that it has recovered. For example, if
Original file line number Diff line number Diff line change @@ -439,7 +439,7 @@ impl<T: ?Sized> RwLock<T> {
439
439
self . poison . get ( )
440
440
}
441
441
442
- /// Clear the poisoned state from a lock
442
+ /// Clear the poisoned state from a lock.
443
443
///
444
444
/// If the lock is poisoned, it will remain poisoned until this function is called. This allows
445
445
/// recovering from a poisoned state and marking that it has recovered. For example, if the
You can’t perform that action at this time.
0 commit comments