We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 567a570 commit 20e8316Copy full SHA for 20e8316
src/std.md
@@ -22,9 +22,10 @@ The common vocabulary types include:
22
23
<details>
24
25
- * In fact, Rust contains two layers of the Standard Library: `core` and `std`.
+ * In fact, Rust contains several layers of the Standard Library: `core`, `alloc` and `std`.
26
* `core` includes the most basic types and functions that don't depend on `libc`, allocator or
27
- even a presense of the operating system.
28
- * Embedded Rust applications often only use `core`.
+ even the presence of an operating system.
+ * `alloc` includes types which require a global heap allocator, such as `Vec`, `Box` and `Arc`.
29
+ * Embedded Rust applications often only use `core`, and sometimes `alloc`.
30
31
</details>
0 commit comments