From 0419e2e8b2243b933189a6de5df986f20416d42f Mon Sep 17 00:00:00 2001 From: Will Bush Date: Tue, 19 Nov 2024 02:19:50 -0600 Subject: [PATCH] Fix typo in 03_leak.md (#220) Corrected a confusing sentence with double negative. --- book/src/07_threads/03_leak.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/src/07_threads/03_leak.md b/book/src/07_threads/03_leak.md index a8795a6..7f61a30 100644 --- a/book/src/07_threads/03_leak.md +++ b/book/src/07_threads/03_leak.md @@ -38,7 +38,7 @@ When the process exits, the operating system will reclaim that memory. Keeping this in mind, it can be OK to leak memory when: -- The amount of memory you need to leak is not unbounded/known upfront, or +- The amount of memory you need to leak is bounded/known upfront, or - Your process is short-lived and you're confident you won't exhaust all the available memory before it exits