Capitalize safety comments

This commit is contained in:
Flying-Toast 2020-09-08 22:37:18 -04:00
parent c66789d572
commit 2799aec6ab
4 changed files with 4 additions and 4 deletions

View file

@ -12,7 +12,7 @@ pub struct MaybeTempDir {
impl Drop for MaybeTempDir {
fn drop(&mut self) {
// Safety: We are in the destructor, and no further access will
// SAFETY: We are in the destructor, and no further access will
// occur.
let dir = unsafe { ManuallyDrop::take(&mut self.dir) };
if self.keep {