docs(sync): normalize dot in fn summaries

This commit is contained in:
MultisampledNight 2024-03-22 23:04:20 +01:00
parent b3df0d7e5e
commit e853b50a72
No known key found for this signature in database
GPG Key ID: 6D525AA147CBDAE2
2 changed files with 2 additions and 2 deletions

View File

@ -396,7 +396,7 @@ impl<T: ?Sized> Mutex<T> {
self.poison.get()
}
/// Clear the poisoned state from a mutex
/// Clear the poisoned state from a mutex.
///
/// If the mutex is poisoned, it will remain poisoned until this function is called. This
/// allows recovering from a poisoned state and marking that it has recovered. For example, if

View File

@ -439,7 +439,7 @@ impl<T: ?Sized> RwLock<T> {
self.poison.get()
}
/// Clear the poisoned state from a lock
/// Clear the poisoned state from a lock.
///
/// If the lock is poisoned, it will remain poisoned until this function is called. This allows
/// recovering from a poisoned state and marking that it has recovered. For example, if the