about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2018-06-23 21:48:56 +0200
committerSimon Sapin <simon.sapin@exyr.org>2018-06-29 14:01:33 +0200
commit15bb6c431da6f486fd048a00ba9c72fe5bc2dd74 (patch)
tree820581b3b3e834f9076690463ad09ec5071fa8af /src/liballoc
parentc7638edf5293dd471d951e64671d60febd0b628c (diff)
downloadrust-15bb6c431da6f486fd048a00ba9c72fe5bc2dd74.tar.gz
rust-15bb6c431da6f486fd048a00ba9c72fe5bc2dd74.zip
liballoc docs: Remove “not intended for general usage”
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/lib.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/liballoc/lib.rs b/src/liballoc/lib.rs
index 8ec5a9ed193..c054042d5a1 100644
--- a/src/liballoc/lib.rs
+++ b/src/liballoc/lib.rs
@@ -13,10 +13,10 @@
 //! This library provides smart pointers and collections for managing
 //! heap-allocated values.
 //!
-//! This library, like libcore, is not intended for general usage, but rather as
-//! a building block of other libraries. The types and interfaces in this
-//! library are re-exported through the [standard library](../std/index.html),
-//! 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.
 //!
 //! ## Boxed values
 //!