Skip to content

Commit ae9b87f

Browse files
authoredFeb 1, 2020
Merge pull request #191 from vallentin/patch-1
Removed repeated word
2 parents 3e6e100 + cf36a0f commit ae9b87f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/vec-alloc.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ that, we'll need to use the rest of the heap APIs. These basically allow us to
3737
talk directly to Rust's allocator (jemalloc by default).
3838

3939
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,
40+
library calls `std::alloc::oom()`, which in turn calls the `oom` langitem,
4141
which aborts the program in a platform-specific manner.
4242
The reason we abort and don't panic is because unwinding can cause allocations
4343
to happen, and that seems like a bad thing to do when your allocator just came

0 commit comments

Comments
 (0)
Please sign in to comment.