Skip to content

Commit 15bb6c4

Browse files
committed
liballoc docs: Remove “not intended for general usage”
1 parent c7638ed commit 15bb6c4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/liballoc/lib.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
//! This library provides smart pointers and collections for managing
1414
//! heap-allocated values.
1515
//!
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.
16+
//! This library, like libcore, normally doesn’t need to be used directly
17+
//! since its contents are re-exported in the [`std` crate](../std/index.html).
18+
//! Crates that use the `#![no_std]` attribute however will typically
19+
//! not depend on `std`, so they’d use this crate instead.
2020
//!
2121
//! ## Boxed values
2222
//!

0 commit comments

Comments
 (0)