From 3bed28a9d910060ba692bf5508436e5ec131d7be Mon Sep 17 00:00:00 2001 From: Tom Niget Date: Thu, 22 Dec 2022 20:18:36 +0100 Subject: [PATCH] Add "mostly" --- src/why-rust/compile-time.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/why-rust/compile-time.md b/src/why-rust/compile-time.md index 53cf57ec..e80a62ff 100644 --- a/src/why-rust/compile-time.md +++ b/src/why-rust/compile-time.md @@ -3,7 +3,7 @@ Static memory management at compile time: * No uninitialized variables. -* No memory leaks[^leaks]. +* *Mostly* no memory leaks[^leaks]. * No double-frees. * No use-after-free. * No `NULL` pointers.