Fix typo in defuse doc comment

This commit is contained in:
Daniel Bevenius 2022-01-14 12:48:38 +01:00
parent 167af01211
commit cdb4f70646

View File

@ -38,7 +38,7 @@ impl DropBomb {
Self { _private: () } Self { _private: () }
} }
/// Diffuses the bomb, rendering it safe to drop. /// Defuses the bomb, rendering it safe to drop.
pub fn defuse(self) { pub fn defuse(self) {
mem::forget(self) mem::forget(self)
} }