We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3e6e100 + cf36a0f commit ae9b87fCopy full SHA for ae9b87f
src/vec-alloc.md
@@ -37,7 +37,7 @@ that, we'll need to use the rest of the heap APIs. These basically allow us to
37
talk directly to Rust's allocator (jemalloc by default).
38
39
We'll also need a way to handle out-of-memory (OOM) conditions. The standard
40
-library calls `std::alloc::oom()`, which in turn calls the the `oom` langitem,
+library calls `std::alloc::oom()`, which in turn calls the `oom` langitem,
41
which aborts the program in a platform-specific manner.
42
The reason we abort and don't panic is because unwinding can cause allocations
43
to happen, and that seems like a bad thing to do when your allocator just came
0 commit comments