We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7638ed commit 15bb6c4Copy full SHA for 15bb6c4
src/liballoc/lib.rs
@@ -13,10 +13,10 @@
13
//! This library provides smart pointers and collections for managing
14
//! heap-allocated values.
15
//!
16
-//! This library, like libcore, is not intended for general usage, but rather as
17
-//! a building block of other libraries. The types and interfaces in this
18
-//! library are re-exported through the [standard library](../std/index.html),
19
-//! and should not be used through this library.
+//! This library, like libcore, normally doesn’t need to be used directly
+//! since its contents are re-exported in the [`std` crate](../std/index.html).
+//! Crates that use the `#![no_std]` attribute however will typically
+//! not depend on `std`, so they’d use this crate instead.
20
21
//! ## Boxed values
22
0 commit comments