From 4690f19e8cbec637ff8ee5933cca5d001eba961c Mon Sep 17 00:00:00 2001 From: Adam MacBeth Date: Sun, 26 Feb 2023 16:04:39 -0600 Subject: [PATCH] Fix typo in drop.md (#457) --- src/traits/drop.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/traits/drop.md b/src/traits/drop.md index 7b3345a7..7e9af839 100644 --- a/src/traits/drop.md +++ b/src/traits/drop.md @@ -33,7 +33,7 @@ fn main() { Discussion points: -* Why does not `Drop::drop` take `self`? +* Why doesn't `Drop::drop` take `self`? * Short-answer: If it did, `std::mem::drop` would be called at the end of the block, resulting in another call to `Drop::drop`, and a stack overflow!