aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Salzedo <[email protected]>2021-03-24 13:31:08 -0700
committerJoshua Salzedo <[email protected]>2021-03-24 13:31:08 -0700
commitea650b684c54fa5e1639e80e5f6300d640b3c9d3 (patch)
treeab990afab3b1465b110f390dc3f5777568172a7a
parent18d3c803deaf004114ec5f5bfd8de66bd241d2f4 (diff)
its `///` not `//`.
-rw-r--r--embassy/src/util/drop_bomb.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy/src/util/drop_bomb.rs b/embassy/src/util/drop_bomb.rs
index 6638a09cc..388209a23 100644
--- a/embassy/src/util/drop_bomb.rs
+++ b/embassy/src/util/drop_bomb.rs
@@ -16,7 +16,7 @@ impl DropBomb {
16 Self { _private: () } 16 Self { _private: () }
17 } 17 }
18 18
19 // Diffuses the bomb, rendering it safe to drop. 19 /// Diffuses the bomb, rendering it safe to drop.
20 pub fn defuse(self) { 20 pub fn defuse(self) {
21 mem::forget(self) 21 mem::forget(self)
22 } 22 }