07_threads: 03_leak: Leak vector with Vec::leak, not Box::leak (#107)
authorEvgeniy Filimonov <33426868+eugenefil@users.noreply.github.com>
Sun, 30 Jun 2024 16:23:20 +0000 (18:23 +0200)
committerGitHub <noreply@github.com>
Sun, 30 Jun 2024 16:23:20 +0000 (18:23 +0200)
book/src/07_threads/03_leak.md

index 824964b..a8795a6 100644 (file)
@@ -27,12 +27,12 @@ run out and crash with an out-of-memory error.
 fn oom_trigger() {
     loop {
         let v: Vec<usize> = Vec::with_capacity(1024);
-        Box::leak(v);
+        v.leak();
     }
 }
 ```
 
-At the same time, memory leaked via `Box::leak` is not truly forgotten.\
+At the same time, memory leaked via `leak` method is not truly forgotten.\
 The operating system can map each memory region to the process responsible for it.
 When the process exits, the operating system will reclaim that memory.